/* 初始化 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	font: inherit;
	vertical-align: baseline;
	color: #333;
}
body,html {
	margin: 0;
	padding: 0;
	font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
	min-width: 1200px;
  }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none!important;
}

input {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}

/* 公用 */

.w-1200 {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) and (min-width: 1440px) {
  .w-1200 {
    width: 1440px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1440px) and (min-width: 1366px) {
  .w-1200 {
    width: 1200px;
    margin: 0 auto;
  }
}


.flex {
  flex: 1
}

.flex2 {
  flex: 2;
}

.flex3 {
  flex: 3;
}

.fz12 {
  font-size: 12px;
}

.fz14 {
  font-size: 14px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz28 {
  font-size: 28px;
}

.fz30 {
  font-size: 30px;
}

.fz32 {
  font-size: 32px;
}

.fz36 {
  font-size: 36px;
}

.fz50 {
  font-size: 50px;
}

.fw700 {
  font-weight: 700;
}

.cblue {
  color: #0070FF;
}

.cblue2 {
  color: #409eff;
}

.cred {
  color: #E21B1C;
}

.cred2 {
  color: #E83E37;
}

.corange {
  color: #EF8B2A;
}

.cfff {
  color: #fff;
}

.c333 {
  color: #333;
}

.c45 {
  color: #454545;
}

.c555 {
  color: #555;
}

.c666 {
  color: #666;
}

.c777 {
  color: #777;
}

.c888 {
  color: #888;
}

.c999 {
  color: #999;
}

.cbbb {
  color: #bbb;
}

.cccc {
  color: #ccc;
}

.border-top {
  border-top: 1px solid #F3F3F3;
  padding-top: 20px;
}

.border-right {
  border-right: 1px solid #e5e5e5;
  padding-right: 120px;
}

.textOverflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.column {
  display: flex;
  flex-direction: column;
}

.columnCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.columnCenterStart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.row {
  display: flex;
  flex-direction: row;
}

.rowWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.rowCenter {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.rowCC {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.rowCCC {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rowStart {
  display: flex;
  flex-direction: row;
  align-items: flex-start;

}

.flexspaceBetween {
  display: flex;
  justify-content: space-between;
}

.spaceBetween {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.centerWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.wrapBetween {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.spaceAround {
  display: flex;
  align-items: center;
  justify-content: space-around;
}


.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mr05 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr50 {
  margin-right: 50px;
}

.mr150 {
  margin-right: 150px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb80 {
  margin-bottom: 80px;
}

.mlb30 {
  margin: 0 30px;
}

.mbl30 {
  margin: 30px 0;
}

.mbl10 {
  margin: 0 10px;
}

.ml10 {
  margin-left: 10px;
}

.ml30 {
  margin-left: 30px;
}

.ml60 {
  margin-left: 60px;
}

.pd50 {
  box-sizing: border-box;
  padding: 50px 100px 50px 100px;
}

.text-line-through {
  text-decoration: line-through;
}

.lh24 {
  line-height: 24px;
}

.lh30 {
  line-height: 30px;
}

.lh34 {
  line-height: 34px;
}

.lh47 {
  line-height: 47px;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.show {
  display: block !important;
}
.hide {
  display: none !important;
}

.visible {
  opacity: 1 !important;
  z-index: 5 !important;
}

.cur {
  cursor: pointer;
}


/* 弹窗 */
.tipMask {
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  min-width: 150px;
  padding: 0 15px;
  height: 50px;
  opacity: 0.5;
  background: #000000;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.tipImg {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.tipText {
  color: #fff;
  font-size: 22px;
}

/* 对话框 */
.mask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mask .dialog {
  width: 300px;
  height: 200px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

.mask .dialog .dialogText {
  height: 100%;
}

.mask .dialog .dialogBtn {
  height: 50px;
  border-top: 1px solid #f2f2f2;
}

.mask .dialog .dialogBtn div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}

.mask .dialog .dialogBtn div:first-child {
  border-right: 1px solid #f2f2f2;
}

.Line1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Line2 {
	overflow: hidden;
	-webkit-line-clamp: 2;
	-moz-line-clamp: 2;
	-ms-line-clamp: 2;
	-o-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-box-orient: vertical;
	-o-box-orient: vertical;
	box-orient: vertical;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
}

.Line3 {
	overflow: hidden;
	-webkit-line-clamp: 3;
	-moz-line-clamp: 3;
	-ms-line-clamp: 3;
	-o-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-box-orient: vertical;
	-o-box-orient: vertical;
	box-orient: vertical;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
}

/* 公用顶部 */

.sy_header {
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.sy_header .sy_logo {
  width: 200px;
  display: block;
}

.sy_header .sy_topbar {
  width: 60%;
  font-size: 18px;
  height: 100%;
}

.sy_header .sy_topbar a {
  color: #fff;
  width: 100px;
  height: 100%;
  text-align: center;
  position: relative;
}

/*.sy_header .sy_topbar a:hover::after {*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  height: 3px;*/
/*  width: 65px;*/
/*  content: '';*/
/*  background-color: #fff; */
/*} */

.sy_header .sy_topbar .sy_active::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 65px;
  content: '';
  background-color: #fff;
}

/* 公用底部 */
.sy_footer {
  background-color: #0e1522;
}

.sy_footer .single_bottom {
  display: flex;
  flex-direction: column;
}

.sy_footer .single_bottom a{
  font-size: 14px;
  color: #ccc;
  margin-bottom: 28px;
  cursor: pointer;
}

.sy_footer .single_bottom a:hover {
  color: #fff;
}

.sy_footer .page_bottom {
  height: 55px;
  line-height: 55px;
  border-top: 1px solid #4B5054;
  text-align: center;
}

/* 首页 */

.banner_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 80px;
  color: #fff;
  white-space: nowrap;
}

.banner_img {
  width: 100%;
}

.sy_company {
  padding: 100px 0;
}

.sy_company .dish {
  width: 40px;
  height: 4px;
  background: #4f4f4f;
  margin: 35px 0;
}

.sy_company .sy_more {
  width: 142px;
  height: 40px;
  background: #0070ff;
  display: block;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  margin-top: 40px;
  transition: all 0.3s ease-in;
  border: 1px solid #fff;
}

.sy_company .sy_more:hover {
  background-color: #fff;
  border: 1px solid #0070ff;
  color: #0070ff;
}

.sy_intro {
  padding: 70px 0;
  width: 100%;
  background: url('../images/item1.png') bottom center no-repeat #F2F6FA;
  /* background-size:cover; */
}

.sy_intro .sy_intro_switch {
  background-color: #fff;
  margin: 50px 0;
}
.sy_intro .sy_intro_switch .sy_tabbar {
  height: 60px;
}

.sy_intro .sy_intro_switch .sy_tab{
  font-weight: 700;
  color: #0B1D30;
  height: 60px;
  margin: 0 50px;
  line-height: 60px;
  cursor: pointer;
}

.sy_intro .sy_intro_switch .sy_tab.sy_active {
  border-bottom: 3px solid #0070ff;
  color: #0070ff;
}

.sy_relative {
  position: relative;
  height: 450px;
  background-image: url('../images/datu2.png');
  background-repeat: no-repeat;
  background-size: 100%  55%;
  background-position-y: top;
}

.sy_intro .sy_intro_switch .sy_intro_main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.1s ease-in;

}

.sy_intro .sy_intro_switch .sy_intro_main .sy_intro_up {
  height: 225px;
  width: 100%;
  padding: 50px 0 0 50px;
  box-sizing: border-box;

}

.sy_intro .sy_intro_switch .sy_intro_main .sy_intro_down {
  padding: 50px;
}

.sy_intro .sy_intro_switch .sy_intro_main .sy_intro_down .down_single {
  flex: 1;

}

.sy_intro .sy_intro_switch .sy_intro_main .sy_intro_down .dash:not(:last-child) {
  width: 1px;
  height: 44px;
  background-color: #eee;
  margin: 0 50px;
}


.sy_system {
  padding: 100px 0 60px 0;
}

.sy_cert {
  padding: 60px 0 50px 0;
  background: url('../images/item3.png') no-repeat center center #060D1C;
  width: 100%;
  background-size:cover;
}

.sy_cert .cert_single {
  width: 25%;
  margin-bottom: 60px ;
}

.sy_cert .cert_single .sy_imgbox {
  height: 70px;
  line-height: 70px;
}

.sy_cert .cert_single p {
  height: 50px;
}

.sy_count {
  background-color: #060D1C;
  padding: 70px 0;
}

.sy_data {
  padding: 70px 0;
  border-bottom: 1px solid #f2f2f2;
}

.sy_data .single_data {
  width: 25%;
}

.sy_news {
  padding: 70px 0;
}

.sy_news .news_single {
  width: 30%;
}

.sy_news .news_single:not(:last-child) {
  margin-right: 5%;
}

.sy_news .news_single .dash {
  width: 1px;
  height: 160px;
  background: #f2f2f2;
  margin: 0 20px;
}

.sy_news .news_single .news_right {
  height: 140px;
}

.sy_news .sy_more {
  width: 142px;
  height: 40px;
  background: #0070ff;
  display: block;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  margin: 60px auto 0 auto;
  transition: all 0.3s ease-in;
  border: 1px solid #fff;
}

.sy_news .sy_more:hover {
  background-color: #fff;
  border: 1px solid #0070ff;
  color: #0070ff;
}

.sy_bottom_item {
  height: 140px;
  width: 100%;
  background-size:cover;
  background: no-repeat center center url('../images/item2.png');
}

.sy_bottom_item .goInquire {
  width: 128px;
  height: 40px;
  border: 1px solid #ffffff;
  display: block;
  line-height: 40px;
  color: #fff;
  text-align: center;
  margin-left: 30px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.sy_bottom_item .goInquire:hover {
  background-color: #fff;
  color: #0070ff;
}

/* 解决方案 */

.sy_banner_single {
  height: 540px;
  background: no-repeat center center;
  width: 100%;
  background-size:cover
}

.sy_banner_single .w-1200 {
  position: relative;
}

.sy_banner_single .sy_banner_text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sy_banner_single .sy_banner_text .sy_free {
  display: block;
  width: 164px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #ffffff;
  color: #fff;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.sy_banner_single .sy_banner_text .sy_free:hover {
  background-color: #fff;
  color: #0070ff;
}

.sy_switch {
  height: 70px;
}

.sy_switch .sy_tab {
  font-size: 20px;
  flex: 1;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #eeeeee;
}

.sy_switch .sy_active {
  color: #0070FF;
}

.sy_switch .sy_active::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 65px;
  content: '';
  background-color: #0070FF;
}

.sy_product_box {
  display: none;
}

.sy_soft_product .sy_soft_title{
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 100px;
}


.sy_soft_product .sy_soft_one {
  padding: 70px 0;
}

.sy_soft_product .sy_soft_two {
  padding: 70px 0;
  background-color: #f9f9f9;

}

.sy_hard_product .hard_switch {
  height: 140px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 160px;
}

.sy_hard_product .hard_switch .hard_tab {
  width: 128px;
  text-align: center;
  line-height: 40px;
  height: 40px;
  cursor: pointer;
}

.sy_hard_product .hard_switch .hard_tabActive {
  background: #0070ff;
  border-radius: 4px;
  color: #ffffff;
}

.sy_hard_product .hard_item {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
  display: none;
}

.sy_hard_product .hard_item .hard_box .hard_single {
  width: 23%;
  height: 390px;
  background: #f9f9f9;
  margin-bottom: 25px;
}

.sy_hard_product .hard_item .hard_box .hard_single:not(:nth-child(4)) {
  margin-right: 2.5%;
}

.sy_hard_product .hard_item .hard_box .hard_img {
  height: 280px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #eeeeee;
}


.sy_hard_product .hard_item .hard_box .hard_img .hard_info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  padding: 36px;
  border-top: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  display: none;
}

.sy_hard_product .hard_item .hard_box .hard_img .hard_info p {
  line-height: 20px;
  margin-bottom: 10px;
  font-size: 14px;
}


/* 关于我们 */

.sy_about_top {
  height: 88px;
  width: 100%;
  background-size:cover;
  background: no-repeat center center url('../images/abouttop.png');
}

.sy_about_us {
  padding: 80px 0;
}

.sy_about_title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.sy_about_us .sy_border {
  width: 40px;
  height: 4px;
  background: #4f4f4f;
  margin: 35px 0;
}

.sy_about_partner {
  padding-top: 70px;
  padding-bottom: 30px;
  background-color: #f9f9f9;

}

.sy_about_partner .partner_single {
  width: 20%;
  height: 140px;
}

.sy_contact {
  padding-top: 80px;
  padding-bottom: 100px;
}

.sy_contact .contact_single {
  width: 25%;
}

/* 服务与支持 */
.sy_service_cneter {
  padding: 60px 0;
}

.sy_service_cneter .center_top {
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.sy_service_cneter .center_main {
  padding-top: 50px;
}

.sy_service_cneter .center_single {
  width: 30%;
  height: 270px;
  box-shadow: 0px 0px 13px 6px rgba(39,71,112,0.05);
  margin-bottom: 20px;
  padding: 40px 25px 0 25px;
  box-sizing: border-box;
}

.sy_service_cneter .single_top {
  height: 55%;
  border-bottom: 1px solid #eee;
}

.sy_service_cneter .single_top .single_top_special {
  display: none;
}

.sy_service_cneter .single_bottom {
  height: 35%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

.sy_service_cneter .service_single {
  width: 50%;
  height: 50%;
  cursor: pointer;
}

.sy_service_cneter .service_single div {
  width: 16px;
  height: 16px;
}

.sy_service_cneter .service_single a {
  color: #454545;
  margin: 0 10px;
}

.sy_service_cneter .service_single span {
  color: #454545;
  margin: 0 10px;
}

.sy_service_cneter .service_single:hover .sy_bg1 {
  background-image: url('../images/dz2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg2 {
  background-image: url('../images/sq2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg3 {
  background-image: url('../images/bd2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg4 {
  background-image: url('../images/kf2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg5 {
  background-image: url('../images/dh2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg6 {
  background-image: url('../images/gz2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg7 {
  background-image: url('../images/gg2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg8 {
  background-image: url('../images/bx2.png') !important;
}
.sy_service_cneter .service_single:hover .sy_bg9 {
  background-image: url('../images/jx2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg10 {
  background-image: url('../images/rj2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg11 {
  background-image: url('../images/az2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg12 {
  background-image: url('../images/az2.png') !important;
}

.sy_service_cneter .service_single:hover .sy_bg13 {
  background-image: url('../images/gd2.png') !important;
}

.sy_service_cneter .service_single .sy_gif {
  display: none;
}

.sy_service_cneter .service_single:hover a {
  color: #0070ff;
}

.sy_service_cneter .service_single:hover span {
  color: #0070ff;
}

.sy_service_cneter .service_single:hover .sy_gif {
  display: block;
}


/* 书页蒙层、表单 */

.sy_mask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
}

.sy_mask_main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.sy_form {
  width: 485px;
  height: 580px;
  background: #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 24px 36px 0 36px;
}

.sy_form .sy_input {
  width: 100%;
  border: 1px solid #dddddd;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
}

.sy_form .sy_input input {
  width: 100%;
  height: 95%;
  font-size: 14px;
  color: #666;
}

.sy_form textarea {
  width: 100%;
  height: 108px;
  border: 1px solid #dddddd;
  resize: none;
  padding: 8px 0 0 10px;
  font-size: 14px;
  color: #666;
  outline: none;
}

.sy_button {
  width: 128px;
  height: 44px;
  background: #0070ff;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}

.sy_phone {
  width: 560px;
  height: 200px;
  background: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 24px 36px;
}

.sy_repair {
  width: 800px;
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 36px;
}



/* 公告列表 */

.sy_news_list {
  padding-top: 60px;
}

.sy_news_list .news_title {
  padding-bottom: 25px;
}

.sy_news_list .news_title .column {
  cursor: pointer;
}

.sy_news_list .news_title .column:hover .fz20 {
  color: #0070FF;
}

.sy_news_list .news_single {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 25px;
}

.sy_news_list .news_detail {
  border-top: 1px solid #f2f2f2;
  padding: 36px 0;
  display: none;
}

.sy_news_list .news_detail .news_content {
  background: #f9f9f9;
  padding: 40px 36px;
  line-height: 30px;
}

/* 帮助中心 */
.help_style {
  margin-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f2f2f2;
}

.help_single {
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
}

.help_detail {
  margin-top: 20px;
  background: #f9f9f9;
  padding: 30px;
  display: none;
}

.sy_control ,
.close_mask{
  cursor: pointer;
}

.sy_control:hover span {
  color: #0070FF !important;
}

/* 新闻列表 */
.sy_news_info {
  padding: 80px 0 60px 0;
}

.sy_news_info h2 {
  margin-bottom: 70px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.sy_news_info .sy_news_info_single {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 30px;
  margin-bottom: 37px;
}

.sy_news_info .sy_news_info_single:hover .sy_news_h4,
.sy_news_info .sy_news_info_single:hover .sy_read_more,
.sy_news_info .sy_news_info_single:hover .sy_news_time div,
.sy_news_info .sy_news_info_single:hover .sy_news_time div span
 {
  color: #0070FF;
}

.sy_news_info .sy_news_info_single .sy_news_time {
  margin-right: 20px;
  width: 280px;
  height: 180px;
}

.sy_news_info .sy_news_info_single .sy_news_h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.sy_news_info .sy_news_info_single .sy_read_more {
  font-size: 14px;
  font-weight: 700;
}

.sy_news_info .sy_news_info_single .sy_info_content {
  font-size: 14px;
  color: #666;
  margin-bottom: 35px;
  line-height: 24px;
}

.sy_news img,
.sy_news_info img{
  object-fit: cover;
}

.sy_page_switch .sy_page {
  width: 36px;
  height: 36px;
  border: 1px solid #dddddd;
  line-height: 36px;
  text-align: center;
  margin-right: 16px;
  cursor: pointer;
}

.sy_page_switch .sy_page.sy_pageActive {
  color: #fff;
  background: #0070ff;
}

/* 新闻详情 */
.sy_news_main {
  padding: 60px 0;
}

.sy_news_main .sy_news_top {
  padding-bottom: 30px;
  border-bottom: 1px solid #efeeed;
  margin-bottom: 40px;
}

.sy_news_main .sy_news_title {
  color: #343434;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sy_news_main .sy_news_times {
  color: #999;
  font-size: 14px;
}

.sy_news_main .sy_next_prev {
  margin-top: 50px;
}
.sy_prev a,.sy_next a {
  display: inline-block;
  max-width: 450px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sy_code {
  width: 440px;
  height: 350px;
  background: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 24px 36px;
}
