/*****author chengxuefeng*****/

/*@reset*/

*,
*:before,
*:after {
  box-sizing: border-box;
}

/*IE8 && phone*/

html,
body {
  height: 100%;
}

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
input,
textarea {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

i,
em {
  font-style: normal;
}

b,
strong {
  font-weight: normal;
}

input,
select {
  outline: none;
}

.none {
  display: none !important;
}

/*重置滚动条样式*/

/*
*::-webkit-scrollbar{width:8px;height:8px;background:#e5e5e5;}
*::-webkit-scrollbar-thumb{background:#c9c9c9;border-radius: 8px;}
*::-webkit-scrollbar-corner{background:#e5e5e5;}
*/

/*@public*/

.clear {
  zoom: 1;
}

.clear:before,
.clear:after {
  display: table;
  content: "";
}

.clear:after {
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.tl {
  text-align: left;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

.dblock {
  display: block;
}

.diblock {
  display: inline-block;
}

.none {
  display: none;
}

.hidetext {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*单行文本溢出隐藏*/

/*width*/

.fluid {
  display: block;
  width: 100%;
}

.w50 {
  width: 50%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col4 {
  width: 25%;
}

.col5 {
  width: 20%;
}

/*@img*/

img {
  -webkit-user-drag: none;
}

/*@btn*/

.btn {
  cursor: pointer;
}

/*@form*/

/*@animation*/

.ts {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation: fadeInLeft 1.25s ease both;
  animation: fadeInLeft 1.25s ease both;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation: fadeInRight 1.25s ease 0.35s both;
  animation: fadeInRight 1.25s ease 0.35s both;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.55, 0.55, 0.55);
    transform: scale3d(0.55, 0.55, 0.55);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.55, 0.55, 0.55);
    transform: scale3d(0.55, 0.55, 0.55);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation: zoomIn 0.7s ease both;
  animation: zoomIn 0.7s ease both;
}

.zoomIn_delay {
  -webkit-animation: zoomIn 0.7s ease 1.25s both;
  animation: zoomIn 0.7s ease 1.25s both;
}

/*@page*/

body {
  font-family: /* 中文*/ "Microsoft YaHei", "Microsoft YaHei UI", "PingFang SC",
  "Hiragino Sans GB", "Source Han Sans CN", "sans-serif",
    /* 英文*/ "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto",
  "Ubuntu", "Helvetica Neue", "Helvetica", "Arial";
  font-size: 16px;
  color: #333;
  line-height: 1.15;
  word-wrap: break-word;
  /*-webkit-user-select:none;*/
}

.page_wrap {
  min-width: 1200px;
}

.comm_wrap {
  width: 1200px;
  margin: 0 auto;
  padding: 45px 0;
}

.header .comm_wrap {
  padding: 0 !important;
}

.block_ct {
  display: block;
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

/*@btn*/

.btn_normal {
  background: #4567ff;
  transition: 0.25s ease background-color;
  box-shadow: 0 0 10px rgba(21, 50, 181, 0.19);
}

.btn_normal:hover {
  background: #0029e2 !important;
}

.btn_high {
  background: #ff9c00;
  transition: 0.25s ease background-color;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.19);
}

.btn_high:hover {
  background: #ff7800 !important;
}

.btn_warn {
  background: #ff3849;
  transition: 0.25s ease background-color;
  box-shadow: 0 0 10px rgba(255, 56, 73, 0.19);
}

.btn_warn:hover {
  background: #ff0015 !important;
}

/*header*/

.header {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  height: 64px;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.header:hover {
  background: #09080d;
}

.header_hasbg {
  background: #09080d;
}

.header .logo {
  float: left;
  width: 120px;
  height: 33px;
  margin-top: 15px;
}

.header .logo img {
  width: 120px;
}

.header .nav {
  float: right;
}

.nav {
  position: relative;
}

.nav_item {
  position: relative;
  float: left;
  font-size: 17px;
  color: #fff;
  line-height: 64px;
  padding: 0 10px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.nav_item_hasmenu {
  position: relative;
  cursor: default;
}

.nav_item.active {
  color: #00c6ff;
}

.nav_item:after {
  content: "";
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 0;
  height: 3px;
  background: transparent;
}

.nav_item:hover:after {
  left: 0;
  right: 0;
  background: #00c6ff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*.nav_item.active:after{background:#00c6ff;}*/

.nav_item + .nav_item {
  margin-left: 30px;
}

.nav_item:last-child {
  padding-right: 0;
}

.nav_item_main {
  position: absolute;
  right: 0;
  top: 100%;
  background: #101019;
  line-height: 1.15;
  padding: 25px 0 40px 0;
  display: none;
}

.nav .link_group {
  float: left;
  padding: 0 35px;
}

.nav .link_group:first-child {
  /*border-right: 1px solid #343434;*/
}

.nav .link_group_border {
  border-right: 1px solid #343434;
}

.nav .link_group + .link_group {
  /* border-left: 1px solid #343434; */
}

.nav .link_group_tit {
  font-size: 16px;
  color: #fff;
  margin-bottom: 22px;
}

.nav .link_item {
  display: block;
  font-size: 14px;
  color: #afafaf;
  line-height: 1.6;
}

.nav .link_item.active {
  color: #00c6ff;
}

.nav a.link_item:hover {
  color: #fff;
}

.nav .link_item + .link_item {
  margin-top: 10px;
}

.nav .link_item_gnn {
  position: relative;
}

.nav .link_item .tag {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  padding: 3px 5px;
  background: #ff4200;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.nav .link_item .tag_rc {
  font-size: 14px;
  background: #3359ff;
}

.nav .link_qritem {
  position: relative;
}

.nav .link_qritem_img {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 140px;
  margin-top: 10px;
}

.nav .link_qritem:hover .link_qritem_img {
  display: block;
}

/**/

.nav .link_pd {
  width: 520px;
  margin-right: -350px;
}

.nav .link_sln {
  width: 160px;
  left: 50%;
  right: auto;
  margin-left: -75px;
  /*box-shadow: 0 8px 8px rgba(0,0,0,0.6);*/
}

.nav2 .link_sln {
  width: 322px !important;
}

.nav .link_sln .link_group {
}

.nav .link_about {
  width: 150px;
  left: 50%;
  right: auto;
  margin-left: -75px;
}

.nav .link_about .link_group:first-child {
  padding: 0;
  padding-left: 48px;
}

/*footer*/

.footer {
  overflow: hidden;
}

.footer_top {
  background: #09080d;
  overflow: hidden;
}

.footer .logo {
  float: left;
  margin-left: 70px;
  margin-top: 75px;
}

.footer .logo_txt {
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
  font-weight: normal;
  letter-spacing: 1px;
}

.footer_link {
  position: relative;
  float: right;
  padding-left: 90px;
  margin-right: 40px;
}

.footer_link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 40px;
  width: 1px;
  background: #343434;
}

.footer_link .link_group {
  float: left;
  min-width: 110px;
}

.footer_link .link_group + .link_group {
  margin-left: 150px;
}

.footer_link .link_group:nth-child(1),
.footer_link .link_group:nth-child(2) {
  display: none;
}

.footer_link .link_group_tit {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer_link .link_item {
  display: block;
  font-size: 14px;
  color: #91969b;
}

.footer_link a.link_item:hover {
  color: #fff;
}

.footer_link .link_item + .link_item {
  margin-top: 15px;
}

.footer_link .link_item.dblock {
  width: 87px;
  height: 87px;
}

.footer_link .link_item.follow {
  color: #484849;
}

.footer_bt {
  font-size: 14px;
  color: #5e6266;
  background: #202224;
  padding: 20px 0;
}

.friend_link {
  margin-bottom: 10px;
}

.friend_link,
.copyright {
  text-align: center;
}

.sct {
  padding-bottom: 65px;
}

.sct_grey {
  background: #fff;
}

.sct_white {
  background: #fff;
}

.sct_bg {
  background: #f7f8fa;
}

.sct_hidden {
  overflow: hidden;
}

.sct_cap {
  padding: 50px 0;
}

.sct_tit {
  font-size: 26px;
  color: #000;
  text-align: center;
}

.sct_subtit {
  font-size: 16px;
  color: #666;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-top: 15px;
  line-height: 1.5;
}

/**/

.sct_fig {
  position: relative;
  float: left;
  line-height: 115px;
  background: #fff;
  padding-left: 50px;
  position: relative;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.05);
}

.page_yyfn .sct_fig_group {
  text-align: center;
}

.page_yyfn .sct_fig {
  box-sizing: content-box;
  margin-right: 30px !important;
  display: inline-block !important;
  float: none;
  margin-bottom: 30px;
}

.page_yyfn .sct_fig_in {
  text-align: left;
}

.sct_fig_group_col3 .sct_fig {
  width: 380px;
}

.sct_fig_group_col3 .sct_fig + .sct_fig {
  margin-left: 30px;
}

.sct_fig_in {
  opacity: 1;
}

.sct_fig_img {
  margin-right: 35px;
  vertical-align: middle;
}

.sct_fig_txt {
  font-size: 16px;
  color: #000;
}

.sct_fig_mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/**/

.sct_img {
  display: block;
  position: relative;
  width: 1920px;
  left: 50%;
  margin-left: -960px;
}

/*****page_index*****/

.page_index .bn {
  height: 500px;
  background: #14003f url(../images/bg_about_bn.png) no-repeat center;
}

/*.page_index .bn{height:500px;background:#000;}*/

.page_index .sct_brief .sct_cap {
  padding-top: 55px;
}

.page_index .sct_dl .sct_cap {
  padding: 60px 0 55px;
}

.index_bn_carousel {
  height: 100%;
}

.index_bn_carousel .carousel_box {
  height: 100%;
}

.index_bn_carousel .carousel_item {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.index_bn_carousel .carousel_item > img {
  position: relative;
  display: block;
  width: 1920px;
  height: 100%;
  left: 50%;
  margin-left: -960px;
}

.index_bn_carousel .carousel_item_in {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1200px;
  margin: 0 auto;
}

.index_bn_carousel .carousel_item .txt {
  position: absolute;
  left: 0;
  top: 160px;
}

.index_bn_carousel .carousel_item .txt_tit {
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}

.index_bn_carousel .carousel_item .txt_subtit {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.index_bn_carousel .carousel_item .txt_text {
  color: #999;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.index_bn_carousel .carousel_item .btn_view {
  display: block;
  width: 124px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 43px;
  margin-top: 30px;
}

.index_bn_carousel .carousel_item .btn_view:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: -3px;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-right: 5px;
}

.index_bn_carousel .swiper-slide {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.index_bn_carousel .swiper-slide-active {
  opacity: 1;
}

.index_bn_carousel .index_bn_swiper_pagination {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 35px;
  text-align: center;
}

.index_bn_carousel .swiper-pagination-switch {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #634d7f;
  margin: 0 8px;
  border: none;
  border-radius: 0;
  opacity: 1;
  cursor: pointer;
}

.index_bn_carousel .swiper-active-switch {
  background: #fff;
}

.index_bn_carousel .swiper-btns {
  display: none;
}

.index_bn_carousel .swiper-btn-pre {
  left: 50%;
  margin-left: -750px;
}

.index_bn_carousel .swiper-btn-next {
  right: 50%;
  margin-right: -750px;
}

.index_bn_carousel:hover .swiper-btns {
  display: block;
}

.index_bn_carousel .slide_txt,
.index_bn_carousel .slide_img_wrap,
.index_bn_carousel .slide_img_frame {
  position: absolute;
}

.index_bn_carousel .slide_img_wrap {
  width: 564px;
  height: 400px;
}

.index_bn_carousel .slide_img_frame {
  left: 0;
  top: 0;
}

.index_bn_carousel .slide_preimg {
  display: none;
}

.index_bn_carousel .slide_up .slide_txt {
  left: 0;
  top: 162px;
}

.index_bn_carousel .slide_up .slide_img_wrap {
  top: 74px;
  right: 0;
}

.index_bn_carousel .slide_tg .slide_txt {
  left: 0;
  top: 164px;
}

.index_bn_carousel .slide_tg .slide_img_wrap {
  top: 78px;
  right: 0;
}

.index_bn_carousel .slide_sell .slide_txt {
  left: 0;
  top: 164px;
}

.index_bn_carousel .slide_sell .slide_img_wrap {
  top: 78px;
  right: 0;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

.fadeInUp {
  /*-webkit-animation: fadeInUp 1.5s ease-in-out infinite;*/
  animation: fadeInUp 2s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.opacity_up {
  animation: opacity 1.25s ease-in-out alternate infinite;
  animation-fill-mode: both;
}

.opacity_tg {
  animation: opacity 1.25s ease-in-out alternate infinite;
  animation-fill-mode: both;
}

.opacity_sell {
  animation: opacity 1.25s ease-in-out alternate infinite;
  animation-fill-mode: both;
}

.page_index .sct_brief .sct_fig,
.page_metadata .sct_prov .sct_fig {
  overflow: hidden;
}

.page_index .sct_brief .sct_fig_in,
.page_metadata .sct_prov .sct_fig_in {
  position: relative;
  top: 0;
  transition: all 0.25s ease;
}

.page_index .sct_brief .sct_fig_mask,
.page_metadata .sct_prov .sct_fig_mask {
  top: 100%;
  bottom: auto;
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  background: #fff;
  padding: 14px 25px 10px;
  transition: top 0.5s ease;
}

.page_metadata .sct_prov .sct_fig_mask_obj {
  padding: 15px 25px 0;
}

.page_index .sct_brief .sct_fig:hover .sct_fig_in,
.page_metadata .sct_prov .sct_fig:hover .sct_fig_in {
  top: 0px;
  opacity: 1;
}

.page_index .sct_brief .sct_fig:hover .sct_fig_mask,
.page_metadata .sct_prov .sct_fig:hover .sct_fig_mask {
  top: 0;
  bottom: 0;
}

/*g_component*/

.swiper_tab {
  display: table;
  margin: 0 auto 30px;
}

.swiper_tab .swiper-pagination-switch {
  float: left;
  color: #000;
  font-size: 16px;
  text-align: center;
}

.swiper_tab .swiper-pagination-switch + .swiper-pagination-switch {
  margin-left: 50px;
}

.swiper_tab .swiper-pagination-switch .txt {
  padding-bottom: 15px;
}

.swiper_tab .swiper-pagination-switch .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.swiper_tab .swiper-pagination-switch.swiper-active-switch .icon {
  background-position-y: -52px;
}

.swiper_tab .swiper-pagination-switch.swiper-active-switch .txt {
  position: relative;
  color: #ff9c00;
}

.swiper_tab .swiper-pagination-switch.swiper-active-switch .txt:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 2px;
  background: #ff9c00;
  margin: auto;
}

/**/

.index_pd_carousel {
  height: 465px;
}

.index_pd_carousel .swiper-btn-pre,
.index_pd_carousel .swiper-btn-next {
  margin-top: -50px;
}

.swiper_tab_pd .swiper-pagination-switch .icon_pc {
  background: url(../images/icon_pd_sp.png) no-repeat left top;
}

.swiper_tab_pd .swiper-pagination-switch .icon_app {
  background: url(../images/icon_pd_sp.png) no-repeat -50px top;
}

.swiper_tab_pd .swiper-pagination-switch .icon_benniu {
  background: url(../images/icon_pd_sp.png) no-repeat -100px top;
}

.swiper_tab_pd .swiper-pagination-switch .icon_lh {
  background: url(../images/icon_pd_sp.png) no-repeat -150px top;
}

.page_ptzd .swiper_tab_scene .swiper-pagination-switch .icon_subject {
  background: url(../images/icon_scene_sp.png) no-repeat -13px top;
}

.page_ptzd .swiper_tab_scene .swiper-pagination-switch .icon_monitor {
  background: url(../images/icon_scene_sp.png) no-repeat -160px top;
}

.page_ptzd .swiper_tab_scene .swiper-pagination-switch .icon_answer {
  background: url(../images/icon_scene_sp.png) no-repeat -304px top;
}

.page_ptzd .swiper_tab_scene .swiper-pagination-switch .icon_dna {
  background: url(../images/icon_scene_sp.png) no-repeat -449px top;
}

.page_ptzd
.sct_info_scene
.swiper_tab
.swiper-pagination-switch.swiper-active-switch
.icon {
  background-position-y: -52px !important;
}

.swiper_tab_scene.page_ypsj
.swiper-pagination-switch.swiper-active-switch
.txt:after {
  width: 100%;
}

.page_ypsj .swiper_tab_scene .swiper-pagination-switch .icon_subject {
  background: url(../images/icon_scene_sp0.png) no-repeat left top;
}

.page_ypsj .swiper_tab_scene .swiper-pagination-switch .icon_monitor {
  background: url(../images/icon_scene_sp0.png) no-repeat -50px top;
}

.page_ypsj .swiper_tab_scene .swiper-pagination-switch .icon_answer {
  background: url(../images/icon_scene_sp0.png) no-repeat -100px top;
}

.page_ypsj .swiper_tab_scene .swiper-pagination-switch .icon_dna {
  background: url(../images/icon_scene_sp0.png) no-repeat -150px top;
}

.page_ypsj
.sct_info_scene
.swiper_tab
.swiper-pagination-switch.swiper-active-switch
.icon {
  background-position-y: -50px !important;
}

.page_itg_info.page_ypsj .pt_depot .pt_cnt {
  top: 260px !important;
}

.pt_txt li {
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/icon_li_dot.png") no-repeat left 12px;
  padding-left: 18px;
  position: relative;
  left: -18px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.sct_dl .dl_item {
  display: table;
  margin: auto;
}

.sct_dl .dl_item .btn {
  display: inline-block;
  width: 140px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 43px;
  text-align: center;
}

.sct_dl .dl_item .btn + .btn {
  margin-left: 30px;
}

.sct_dl .dl_item .btn_more {
  color: #999;
  font-size: 16px;
  font-weight: normal;
}

.sct_dl .dl_item .btn_more:hover {
  color: #b3b3b3;
  text-decoration: underline;
}

.sct_dl .dl_l {
  float: left;
}

.sct_dl .dl_r {
  float: left;
}

.sct_dl .dl_tit {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.sct_dl .dl_text {
  font-size: 16px;
  color: #000;
  line-height: 2;
}

/**/

.sct_dl .dl_pc {
}

.sct_dl .dl_pc .dl_r {
  margin-top: 110px;
  margin-left: 40px;
}

.sct_dl .dl_pc .dl_text {
  margin-bottom: 70px;
}

.sct_dl .dl_pc .btn_more {
  position: relative;
  top: -22px;
  width: auto;
  float: right;
  margin-top: 25px;
}

/**/

.sct_dl .dl_pc_gnn {
}

.sct_dl .dl_pc_gnn .dl_r {
  margin-top: 50px;
  margin-left: 40px;
}

/**/

.sct_dl .dl_zbpc {
}

/*.sct_dl .dl_zbpc .dl_l{margin-top:10px;}*/

.sct_dl .dl_zbpc .dl_r {
  margin-top: 50px;
  margin-left: 60px;
}

.sct_dl .dl_zbpc .dl_text {
  margin-bottom: 102px;
}

/**/

.sct_dl .dl_app_up .dl_r {
  margin-top: 140px;
}

.sct_dl .dl_app_up .dl_text {
  margin-bottom: 100px;
}

.sct_dl .dl_app_up .dl_cnt {
  float: left;
  margin-left: 60px;
  margin-top: 20px;
}

.sct_dl .dl_app_up .dl_side {
  float: left;
  margin-left: 30px;
}

.sct_dl .dl_app_up .dl_side_qr {
  text-align: center;
}

.sct_dl .dl_app_up .dl_side_qr .txt {
  font-size: 16px;
  color: #999;
  margin-top: 10px;
}

.sct_dl .dl_app_up .btn_more {
  float: right;
  margin-top: 58px;
}

/**/

.sct_dl .dl_app_gnn .dl_r {
  margin-top: 35px;
}

.sct_dl .dl_app_gnn .dl_text {
  margin-bottom: 85px;
}

.sct_dl .dl_app_gnn .dl_cnt {
  float: left;
  margin-left: 60px;
}

.sct_dl .dl_app_gnn .dl_side {
  float: left;
  margin-left: 50px;
}

.sct_dl .dl_app_gnn .dl_side_qr {
  text-align: center;
  margin-top: 65px;
}

.sct_dl .dl_app_gnn .dl_side_qr .txt {
  font-size: 16px;
  color: #999;
  margin-top: 10px;
}

.sct_dl .dl_app_gnn .btn_more {
  float: right;
  margin-top: 120px;
}

/**/

.sct_dl .dl_pc_benniu .dl_r {
  width: 300px;
  margin-left: 80px;
  margin-top: 115px;
}

.sct_dl .dl_pc_benniu .btn_more {
  float: right;
  margin-top: 65px;
}

/**/

.sct_dl .dl_pc_lh .dl_r {
  width: 300px;
  margin-left: 45px;
  margin-top: 105px;
}

.sct_dl .dl_pc_lh .btn_more {
  float: right;
  margin-top: 75px;
}

.sct_qsserver {
  position: relative;
  height: 860px;
}

.sct_qsserver > .comm_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
}

.sct_qsserver .sv_item {
  position: absolute;
  color: #000;
}

.sct_qsserver .sv_item.active {
  color: #002ef2;
}

.sct_qsserver .sv_item.active .sv_item_tit {
  -webkit-transform: scale(1.08);
  font-weight: bold;
  transform: scale(1.08);
}

.sct_qsserver .sv_item.active .sv_item_txt {
  opacity: 1;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/*.sct_qsserver .sv_item:hover{color:#002ef2;}*/

.sct_qsserver .sv_item_info {
  padding-top: 210px;
  left: 120px;
  top: 240px;
  width: 220px;
}

.sct_qsserver .sv_item_tg {
  padding-top: 230px;
  left: 920px;
  top: 200px;
  width: 220px;
}

.sct_qsserver .sv_item_market {
  padding-top: 220px;
  left: 123px;
  top: 580px;
  width: 200px;
}

.sct_qsserver .sv_item_sell {
  padding-top: 190px;
  left: 930px;
  top: 580px;
  width: 200px;
}

.sct_qsserver .sv_item_tit {
  font-size: 16px;
  margin-bottom: 12px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.sct_qsserver .sv_item_txt {
  font-size: 14px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.sct_partner {
  position: relative;
  height: auto;
}

.sct_partner img {
  width: 100%;
}

.sct_partner img.for_h5 {
  display: none;
}

.sct_partner > .comm_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
}

.sct_partner .sct_cap {
  padding-top: 75px;
  padding-bottom: 40px;
}

/*****page_itg*****/

.page_itg .bn {
  position: relative;
  height: 500px;
  background: #000019 url(../images/bg_comm_bn.jpg) no-repeat center;
}

.page_itg .bn_img_wrap {
  overflow: hidden;
}

.page_itg .bn > .bn_img {
  position: relative;
  width: 1920px;
  left: 50%;
  margin-left: -960px;
}

.page_itg .bn_in {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1200px;
  margin: auto;
}

.page_itg .bn_in .slide_txt,
.page_itg .bn_in .slide_img_wrap,
.page_itg .bn_in .slide_img_frame {
  position: absolute;
}

.page_itg .bn_in .slide_img_wrap {
  width: 564px;
  height: 400px;
}

.page_itg .bn_in .slide_img_frame {
  left: 0;
  top: 0;
}

.page_itg_tg .bn_in .slide_txt {
  left: 0;
  top: 164px;
}

.page_itg_tg .bn_in .slide_img_wrap {
  right: 0;
  top: 78px;
}

.page_itg_sell .bn_in .slide_txt {
  left: 0;
  top: 164px;
}

.page_itg_sell .bn_in .slide_img_wrap {
  right: 0;
  top: 78px;
}

/*page_itg_info*/

/*g_component*/

.pt {
  position: relative;
  overflow: hidden;
}

.pt_img {
  position: absolute;
  left: 0;
  top: 0;
}

.pt_cnt {
  position: absolute;
  left: 0;
  top: 0;
}

.pt_tit {
  font-size: 23px;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.pt_txt {
  font-size: 17px;
  line-height: 1.8;
  width: 475px;
  opacity: 0.7;
  color: #000;
  text-align: justify;
}

.long_txt {
  opacity: 0.7;
  color: #000;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}

.long_txt p {
  margin-bottom: 10px;
  font-size: 17px;
}

.btn_more {
  float: right;
  color: #5a8cff;
}

.page_itg_info .sct_prov {
  padding-bottom: 85px;
}

.page_itg_info .sct_prov .sct_cap {
  padding: 70px 0;
}

.page_itg_info .sct_sln .sct_cap {
  padding: 70px 0;
}

.page_itg_info .pt_data {
  height: 450px;
}

.page_itg_info .pt_data .pt_img {
  left: 90px;
  top: 10px;
}

.page_itg_info .pt_data .pt_cnt {
  left: 655px;
  top: 28px;
}

.page_itg_info .pt_depot {
  height: 570px;
}

.page_itg_info .pt_depot .pt_img {
  left: 686px;
  top: 144px;
}

.page_itg_info .pt_depot .pt_cnt {
  left: 100px;
  top: 120px;
}

.page_itg_info .pt_ai {
  height: 596px;
}

.page_itg_info .pt_ai .pt_img {
  left: 70px;
  top: 88px;
}

.page_itg_info .pt_ai .pt_cnt {
  left: 655px;
  top: 235px;
}

.page_itg_info .pt_mdata {
  height: 566px;
}

.page_itg_info .pt_mdata .pt_img {
  left: 622px;
  top: 130px;
}

.page_itg_info .pt_mdata .pt_cnt {
  left: 10px;
  top: 244px;
}

.page_itg_info .pt_mdata .btn_more {
  float: right;
  display: block;
  margin-top: 50px;
}

.page_itg_info .pt_mdata .btn_more:hover {
  color: #b3b3b3;
  text-decoration: underline;
}

.sct_info_scene .sct_cap {
  padding: 85px 0 50px;
}

.itg_info_scene_carousel {
  height: 600px;
}

.sct_info_scene .scene_item {
  display: table;
  margin: auto;
}

.swiper_tab_scene {
  margin-bottom: 50px;
}

.swiper_tab_scene .swiper-pagination-switch .icon_tgyw01 {
  background: url(../images/bg_tgyw_sp01.png) no-repeat 0px top !important;
}

.swiper_tab_scene .swiper-pagination-switch .icon_tgyw02 {
  background: url(../images/bg_tgyw_sp01.png) no-repeat -142px top !important;
}

.swiper_tab_scene .swiper-pagination-switch .icon_tgyw03 {
  background: url(../images/bg_tgyw_sp01.png) no-repeat -285px top !important;
}

.swiper_tab_scene .swiper-pagination-switch .icon_tgyw04 {
  background: url(../images/bg_tgyw_sp01.png) no-repeat -428px top !important;
}

.swiper_tab_scene .swiper-pagination-switch .icon_tgyw05 {
  background: url(../images/bg_tgyw_sp01.png) no-repeat -573px top !important;
}

.swiper_tab_scene .swiper-pagination-switch.swiper-active-switch .txt:after {
  width: 100%;
}

.sct_info_scene
.swiper_tab
.swiper-pagination-switch.swiper-active-switch
.icon {
  background-position-y: -66px !important;
}

/*page_itg_tg*/

.page_itg_tg {
}

.page_itg_tg .sct_design {
  padding-bottom: 85px;
}

.page_itg_tg .sct_design .sct_cap {
  padding: 70px 0;
}

.page_itg_tg .sct_itg .sct_cap {
  padding: 70px 0;
}

.page_itg_tg .pt_tg {
  height: 560px;
}

.page_itg_tg .pt_tg .pt_img {
  left: 96px;
  top: 18px;
}

.page_itg_tg .pt_tg .pt_cnt {
  left: 650px;
  top: 200px;
}

.page_itg_tg .pt_tool {
  height: 560px;
}

.page_itg_tg .pt_tool .pt_img {
  left: 752px;
  top: 20px;
}

.page_itg_tg .pt_tool .pt_cnt {
  left: 214px;
  top: 204px;
}

.page_itg_tg .sct_scene {
  padding-bottom: 110px;
}

.page_itg_tg .sct_scene .sct_cap {
  padding: 65px 0 115px;
}

.sct_scene {
  background: #2b2b2b;
}

.sct_scene .sct_tit {
  color: #fff;
}

.sct_scene .scene_col {
  float: left;
}

.sct_scene .scene_col + .scene_col {
  position: relative;
}

.sct_scene .scene_col + .scene_col:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2b2b2b;
}

.sct_scene .scene_item {
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.sct_scene .scene_item:hover .scene_item_mask {
  background: rgba(255, 144, 0, 0.7);
}

.sct_scene .scene_item:hover .scene_item_mask_tit {
  margin-top: 50px;
}

.sct_scene .scene_item:hover .scene_item_mask_bt {
  opacity: 1;
}

.sct_scene .scene_item + .scene_item:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: #2b2b2b;
}

.sct_scene .scene_item > img {
  width: 100%;
  height: 100%;
}

.sct_scene .scene_item_mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.sct_scene .scene_item_mask_tit {
  font-size: 26px;
  margin-bottom: 25px;
  margin-top: 140px;
  transition: all 0.7s ease;
}

.sct_scene .scene_item_mask_bt {
  opacity: 0;
  transition: all 0.9s ease;
}

.sct_scene .scene_item_mask_txt {
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
  padding: 0 20px;
}

/*g_component*/

.switch {
  display: table;
  margin: auto;
}

.switch_tab {
  float: left;
  border-right: 1px solid #fff1e2;
}

.switch_tab .swiper-pagination-switch + .swiper-pagination-switch {
  margin-top: 30px;
}

.switch_tab .swiper-active-switch .switch_tab_item {
  position: relative;
  color: #ff9600;
}

.switch_tab .swiper-active-switch .switch_tab_item:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2px;
  width: 3px;
  background: #ff9600;
}

.switch_tab_item {
  color: #000;
  font-size: 22px;
  line-height: 56px;
  text-align: right;
  padding-right: 25px;
}

.switch_cnt {
  float: left;
  margin-left: 40px;
}

.switch_cnt_l {
  float: left;
}

.switch_cnt_r {
  overflow: auto;
  padding-left: 25px;
}

.switch_cnt .switch_cnt_txt {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}

.switch_cnt .switch_cnt_txt h6 {
  font-weight: bold;
  margin: 1em 0 0.6rem;
}

.switch_cnt .list_item {
  display: list-item;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  list-style: disc inside;
  line-height: 1.8;
  margin-left: 12px;
}

.switch_cnt .list_item + .list_item {
  margin-top: 20px;
}

/**/

.page_itg_tg .sct_customer .sct_cap {
  padding: 100px 0 75px;
}

.switch_customer {
}

.switch_customer .switch_cnt {
  width: 580px;
  height: 550px;
  margin-left: 100px !important;
}

/*page_itg_market*/

.page_itg_market {
}

.page_itg_market .sct_design {
  padding-bottom: 85px;
}

.page_itg_market .sct_design .sct_cap {
  padding: 70px 0 60px;
}

.page_itg_market .sct_design .design_list {
}

.page_itg_market .sct_design .design_list_item {
  float: left;
  width: 50%;
  text-align: center;
}

.page_itg_market .sct_design .design_list_item_in {
  display: inline-block;
}

.page_itg_market .sct_design .design_list_item_img {
  height: 130px;
}

.page_itg_market .sct_design .design_list_item_tit {
  font-size: 22px;
  color: #000;
  font-weight: bold;
  margin-bottom: 25px;
}

.page_itg_market .sct_design .list_table {
  display: table;
  margin: 0 auto;
}

.page_itg_market .sct_design .list_row {
  overflow: hidden;
  text-align: left;
}

.page_itg_market .sct_design .list_col {
  float: left;
}

.page_itg_market .sct_design .list_col + .list_col {
  margin-left: 45px;
}

.page_itg_market .sct_design .list_row + .list_row {
  margin-top: 15px;
}

.page_itg_market .sct_design .list_item {
  display: list-item;
  font-size: 16px;
  list-style-type: disc;
  list-style-position: inside;
}

.page_itg_market .sct_trade .sct_cap {
  padding: 60px 0 120px;
}

.page_itg_market .pt_cloud {
  height: 434px;
}

.page_itg_market .pt_cloud .pt_img {
  left: 90px;
  top: 20px;
}

.page_itg_market .pt_cloud .pt_cnt {
  left: 666px;
  top: 144px;
}

.page_itg_market .pt_backend {
  height: 572px;
}

.page_itg_market .pt_backend .pt_img {
  left: 624px;
  top: 153px;
}

.page_itg_market .pt_backend .pt_cnt {
  left: 38px;
  top: 214px;
}

.page_itg_market .pt_exp {
  height: 590px;
}

.page_itg_market .pt_exp .pt_img {
  left: 96px;
  top: 83px;
}

.page_itg_market .pt_exp .pt_cnt {
  left: 666px;
  top: 248px;
}

.page_itg_market .pt_eta {
  height: 570px;
}

.page_itg_market .pt_eta .pt_img {
  left: 614px;
  top: 113px;
}

.page_itg_market .pt_eta .pt_cnt {
  left: 38px;
  top: 248px;
}

/*page_itg_sell*/

.page_itg_sell .sct_prov {
  padding-bottom: 85px;
}

.page_itg_sell .sct_prov .sct_cap {
  padding: 70px 0;
}

.page_itg_sell .sct_sln {
  padding-bottom: 40px;
}

.page_itg_sell .sct_sln .sct_cap {
  padding: 75px 0;
}

.switch_sln .switch_tab_item {
  font-size: 22px;
  font-weight: normal;
}

.switch_sln .switch_cnt {
  width: 880px;
  height: 500px;
  margin-left: 60px !important;
}

.switch_sln .list_platform {
  margin-top: 100px;
}

/*page_sln_hk*/

/*g_component*/

.sct_core {
  padding-bottom: 100px;
}

.sct_core .sct_cap {
  padding: 60px 0 70px;
}

.page_sln_hk .pt_open {
  height: 580px;
}

.page_sln_hk .pt_open .pt_img {
  left: 112px;
  top: 120px;
}

.page_sln_hk .pt_open .pt_cnt {
  left: 650px;
  top: 275px;
}

.page_sln_hk .pt_l2 {
  height: 520px;
}

.page_sln_hk .pt_l2 .pt_img {
  left: 756px;
  top: 60px;
}

.page_sln_hk .pt_l2 .pt_cnt {
  left: 116px;
  top: 210px;
}

.page_sln_hk .pt_data {
  height: 526px;
}

.page_sln_hk .pt_data .pt_img {
  left: 75px;
  top: 86px;
}

.page_sln_hk .pt_data .pt_cnt {
  left: 652px;
  top: 230px;
}

.page_sln_hk .pt_trade {
  height: 520px;
}

.page_sln_hk .pt_trade .pt_img {
  left: 696px;
  top: 75px;
}

.page_sln_hk .pt_trade .pt_cnt {
  left: 60px;
  top: 195px;
}

.page_sln_hk .sct_case {
  padding-bottom: 130px;
}

.page_sln_hk .sct_case .sct_cap {
  padding: 75px 0 70px;
}

/*page_sln_consult*/

.page_sln_consult .pt_tg {
  height: 580px;
}

.page_sln_consult .pt_tg .pt_img {
  left: 66px;
  top: 114px;
}

.page_sln_consult .pt_tg .pt_cnt {
  left: 770px;
  top: 248px;
}

.page_sln_consult .pt_push {
  height: 520px;
}

.page_sln_consult .pt_push .pt_img {
  left: 492px;
  top: 96px;
}

.page_sln_consult .pt_push .pt_cnt {
  left: 30px;
  top: 230px;
}

.page_sln_consult .pt_data {
  height: 526px;
}

.page_sln_consult .pt_data .pt_img {
  left: 70px;
  top: 105px;
}

.page_sln_consult .pt_data .pt_cnt {
  left: 770px;
  top: 240px;
}

.page_sln_consult .pt_put {
  height: 520px;
}

.page_sln_consult .pt_put .pt_img {
  left: 474px;
  top: 125px;
}

.page_sln_consult .pt_put .pt_cnt {
  left: 60px;
  top: 220px;
}

.page_sln_consult .sct_case .sct_cap {
  padding: 75px 0 110px;
}

.page_sln_consult .switch_scene .switch_cnt {
  width: 680px;
  height: 450px;
  margin-left: 100px !important;
}

/*****page_dl*****/

.page_dl .bn {
  position: relative;
  height: 690px;
  overflow: hidden;
}

.page_dl .bn > img {
  display: block;
  position: relative;
  left: 50%;
  width: 1920px;
  margin-left: -960px;
}

.page_dl .bn > .comm_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1200px;
  margin: auto;
}

.page_dl .bn_cnt {
  display: table;
  margin: 0 auto;
}

/**/

.page_dl_pc .bn {
  background: #15143f;
}

.page_dl_pc .bn_cnt {
  margin-top: 100px;
  text-align: center;
}

.page_dl_pc .bn_cnt_tit {
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.page_dl_pc .bn_cnt_subtit {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

.page_dl_pc .bn_cnt .btn_dl {
  display: inline-block;
  width: 190px;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 62px;
}

.page_dl_pc .bn_cnt .btn_dl + .btn_dl {
  margin-left: 55px;
}

.page_dl_pc .bn_cnt .btn_more {
  display: inline-block;
  font-size: 14px;
  color: #999;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  text-decoration: underline;
  margin-left: 330px;
  margin-top: 10px;
}

/*g_component*/

.sct_med {
  position: relative;
}

.sct_med > .comm_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
}

.sct_med .med_txt {
  position: absolute;
  z-index: 4;
}

.sct_med .med_txt_tit {
  font-size: 46px;
  color: #ff7e00;
  margin-bottom: 5px;
}

.sct_med .med_txt_tit_en {
  font-size: 22px;
  color: #c9c9c9;
  margin-bottom: 20px;
}

.sct_med .med_txt_text {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
}

.sct_med .med_img {
  position: absolute;
}

.sct_med .med_img_main {
  z-index: 2;
}

.sct_med .med_img_pop {
  z-index: 3;
}

.sct_med .med_img_bg {
  z-index: 1;
}

/**/

.page_dl_pc .sct_med_market {
  height: 702px;
}

.page_dl_pc .sct_med_market .med_txt {
  left: 60px;
  top: 232px;
}

.page_dl_pc .sct_med_market .med_img_main {
  left: 526px;
  top: 65px;
}

.page_dl_pc .sct_med_market .med_img_pop {
  left: 450px;
  top: 128px;
}

.page_dl_pc .sct_med_market .pop_T_r {
  left: 1007px;
  top: 30px;
}

.page_dl_pc .sct_med_market .pop_b_c {
  left: 807px;
  top: 380px;
}

.page_dl_pc .sct_med_market .med_img_bg {
  left: -25px;
  top: 188px;
}

/**/

.page_dl_pc .sct_med_ai {
  height: 690px;
}

.page_dl_pc .sct_med_ai .med_txt {
  left: 870px;
  top: 232px;
}

.page_dl_pc .sct_med_ai .med_img_main {
  left: 60px;
  top: 65px;
}

.page_dl_pc .sct_med_ai .med_img_pop {
  left: 18px;
  top: 122px;
}

.page_dl_pc .sct_med_ai .med_img_bg {
  left: 792px;
  top: 112px;
}

/**/

.page_dl_pc .sct_med_trade {
  height: 640px;
}

.page_dl_pc .sct_med_trade .med_txt {
  left: 60px;
  top: 224px;
}

.page_dl_pc .sct_med_trade .med_img_main {
  left: 526px;
  top: 65px;
}

.page_dl_pc .sct_med_trade .med_img_pop {
  left: 448px;
  top: 75px !important;
}

.page_dl_pc .sct_med_trade .pop_5 {
  left: 808px;
  top: 13px !important;
}

.page_dl_pc .sct_med_trade .med_img_bg {
  left: 146px;
  top: 250px;
}

/**/

.page_dl_pc .sct_med_finance {
  height: 690px;
}

.page_dl_pc .sct_med_finance .med_txt {
  left: 868px;
  top: 232px;
}

.page_dl_pc .sct_med_finance .med_img_main {
  left: 60px;
  top: 65px;
}

.page_dl_pc .sct_med_finance .med_img_pop {
  left: 30px;
  top: 146px;
}

.page_dl_pc .sct_med_finance .med_img_bg {
  left: 730px;
  top: 313px;
}

/**/

.page_dl_pc .sct_med_set {
  height: 710px;
}

.page_dl_pc .sct_med_set .med_txt {
  left: 60px;
  top: 240px;
}

.page_dl_pc .sct_med_set .med_img_main {
  left: 438px;
  top: 60px;
}

.page_dl_pc .sct_med_set .med_img_pop {
  left: 560px;
  top: 60px;
}

.page_dl_pc .sct_med_set .med_img_bg {
  left: -25px;
  top: 240px;
}

.liveRoom {
  height: 811px !important;
}

.liveRoom .med_txt {
  top: 287px !important;
}

.sct_pc_dl {
  height: 300px;
  background: #1b232c;
  text-align: center;
}

.sct_pc_dl > h4 {
  font-size: 35px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 50px;
}

.sct_pc_dl > p {
  font-size: 22px;
  color: #666;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 35px;
}

.sct_pc_dl > .btn {
  display: inline-block;
  width: 190px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 60px;
}

/*page_dl_pc_s*/

.page_dl_pc_s {
}

.page_dl_pc_s > .wrap {
  min-width: 1250px;
}

.page_dl_pc_s .bn {
  background: url(../images/pic_dl_pc_s_header_zb.png) no-repeat center top #f9f9f9;
  height: 1110px;
  position: relative;
  overflow: hidden;
}

.page_dl_pc_s .bn a.mini {
  width: 428px;
  height: 70px;
  line-height: 62px;
  display: inline-block;
  position: absolute;
  top: 270px;
  left: 50%;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-left: -213px;
  background: #e57920;
  z-index: 1;
}

.page_dl_pc_s .bn a.mini:hover {
  background: #ff8624;
}

.page_dl_pc_s .bn .off {
  position: absolute;
  z-index: 100;
  top: 346px;
  left: 50%;
  margin-left: -193px;
  font-size: 16px;
  color: #fff;
}

.page_dl_pc_s .bn .off a {
  text-decoration: underline;
  color: #46e3ff;
}

.page_dl_pc_s .bn .off span {
  margin-right: 20px;
}

.page_dl_pc_s .bn .mini:hover {
  background-position: 0 -98px;
}

.page_dl_pc_s .bn .off:hover {
  color: #e7e7e7;
}

.page_dl_pc_s .wave {
  position: absolute;
  top: 510px;
  left: 0;
  width: 200%;
  animation: rightToLeft 30s linear infinite;
  -webkit-animation: rightToLeft 30s linear infinite;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.page_dl_pc_s .wave .left {
  width: 50%;
  float: left;
}

.page_dl_pc_s .wave .left img {
  max-height: 100%;
  max-width: 100%;
}

.page_dl_pc_s .computer {
  background: url(../images/pic_dl_pc_s_bn_pc_zb.png) no-repeat center;
  width: 1146px;
  height: 603px;
  position: absolute;
  bottom: 135px;
  left: 50%;
  margin-left: -573px;
}

.page_dl_pc_s .section1 {
  background: #fff url(../images/pic_dl_pc_s_sec1.png) no-repeat center;
  height: 657px;
}

.page_dl_pc_s .feature1 {
  position: relative;
  background: url(../images/pic_dl_pc_s_feature1.png) no-repeat center;
  height: 798px;
}

.page_dl_pc_s .feature2 {
  position: relative;
  background: url(../images/pic_dl_pc_s_feature2.png) no-repeat center;
  height: 796px;
}

.page_dl_pc_s .feature1 .sct_in,
.page_dl_pc_s .feature2 .sct_in {
  position: absolute;
  left: 0;
  right: 0;
  width: 1200px;
  height: 100%;
  margin: auto;
}

.page_dl_pc_s .feature1 .carousel {
  height: 480px;
  margin-top: 236px;
}

.page_dl_pc_s .feature2 .carousel {
  height: 480px;
  margin-top: 236px;
}

.page_dl_pc_s .carousel_img {
  display: block;
  margin: 0 auto;
}

.page_dl_pc_s .feature3 {
  background: url(../images/pic_dl_pc_s_feature3.png) no-repeat center;
  height: 802px;
}

.page_dl_pc_s .feature4 {
  background: url(../images/pic_dl_pc_s_feature4.png) no-repeat center;
  height: 794px;
}

.page_dl_pc_s .feature5 {
  background: url(../images/pic_dl_pc_s_feature5.png) no-repeat center;
  height: 800px;
}

.page_dl_pc_s .sct_action {
  height: 335px;
  background: #1b222c;
  text-align: center;
  overflow: hidden;
}

.page_dl_pc_s .sct_action h3 {
  font-size: 32px;
  color: #ffffff;
  margin-top: 80px;
}

.page_dl_pc_s .sct_action p {
  font-size: 20px;
  color: #dedede;
  margin-top: 26px;
}

.page_dl_pc_s .sct_action a {
  margin-top: 34px;
  width: 200px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  background: url(../images/pic_dl_pc_s_button.png) no-repeat center -199px;
}

.page_dl_pc_s .sct_action a:hover {
  background-position: center bottom;
}

@keyframes rightToLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@-moz-keyframes rightToLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@-webkit-keyframes rightToLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@-ms-keyframes rightToLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@-o-keyframes rightToLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

/**/

.page_dl_app .header .logo,
.page_dl_app_ytg .header .logo,
.page_dl_app_gnn .header .logo {
  background-image: url(../images/pic_logo_white.png);
}

.page_dl_app .nav_item.active,
.page_dl_app_ytg .nav_item.active,
.page_dl_app_gnn .nav_item.active {
  color: #fff;
}

.page_dl_app .nav_item.active:after,
.page_dl_app_ytg .nav_item.active:after,
.page_dl_app_gnn .nav_item.active:after {
  background: #fff;
}

.page_dl_app .bn {
  background: #ff8316;
}

.page_dl_app .bn_cnt {
  margin-top: 92px;
}

.page_dl_app .bn_cnt_l {
  float: left;
  margin-top: 120px;
}

.page_dl_app .bn_cnt_r {
  float: left;
  margin-left: 100px;
}

.page_dl_app .bn_cnt_tit {
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 45px;
}

.page_dl_app .bn_cnt_tit .tag {
  display: inline-block;
  width: 96px;
  font-size: 18px;
  font-weight: bold;
  color: #ee8300;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  background: #fff;
  vertical-align: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page_dl_app .bn_cnt_subtit {
  font-size: 26px;
  color: #fff;
  margin-bottom: 88px;
}

.page_dl_app .bn_cnt .btn_dl {
  display: block;
  width: 220px;
  font-size: 22px;
  font-weight: bold;
  color: #de6800;
  text-align: center;
  line-height: 60px;
  background: #fff;
}

.page_dl_app .bn_cnt .btn_dl + .btn_dl {
  margin-top: 25px;
}

.page_dl_app .bn_cnt .btn_dl .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: -6px;
}

.page_dl_app .bn_cnt .btn_dl .icon_apple {
  background: url(../images/icon_apple.png) no-repeat center;
}

.page_dl_app .bn_cnt .btn_dl .icon_android {
  background: url(../images/icon_android.png) no-repeat center;
}

.page_dl_app .bn_cnt_action {
  float: left;
}

.page_dl_app .bn_cnt .qr {
  float: left;
  margin-top: -6px;
  margin-left: 30px;
}

.page_dl_app .bn_cnt .qr_txt {
  font-size: 14px;
  color: #666;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: -12px;
}

/**/

.page_dl_app .sct_med_market {
  height: 700px;
}

.page_dl_app .sct_med_market .med_txt {
  left: 790px;
  top: 256px;
}

.page_dl_app .sct_med_market .med_img_main {
  left: 66px;
  top: 94px;
}

/**/

.page_dl_app .sct_med_stock {
  height: 690px;
}

.page_dl_app .sct_med_stock .med_txt {
  left: 102px;
  top: 262px;
}

.page_dl_app .sct_med_stock .med_img_main {
  left: 524px;
  top: 30px;
}

/**/

.page_dl_app .sct_med_ai {
  height: 690px;
}

.page_dl_app .sct_med_ai .med_txt {
  left: 796px;
  top: 262px;
}

.page_dl_app .sct_med_ai .med_img_main {
  left: 100px;
  top: 80px;
}

/**/

.page_dl_app .sct_med_live {
  height: 690px;
}

.page_dl_app .sct_med_live .med_txt {
  left: 102px;
  top: 250px;
}

.page_dl_app .sct_med_live .med_img_main {
  left: 496px;
  top: 40px;
}

/**/

.page_dl_app .sct_med_tool {
  height: 700px;
}

.page_dl_app .sct_med_tool .med_txt {
  left: 784px;
  top: 240px;
}

.page_dl_app .sct_med_tool .med_img_main {
  left: 80px;
  top: 52px;
}

/*****page_dl_gnn****/

.page_dl_gnn .bn_cnt_tit {
  font-weight: normal;
}

.page_dl_gnn .bn_cnt_subtit {
  margin-bottom: 20px;
}

.page_dl_gnn .bn_cnt .btn_dl {
  width: 170px;
  line-height: 50px;
  font-weight: normal;
  letter-spacing: 1px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.page_dl_gnn .sct_med .med_txt_tit {
  color: #fb583f;
}

.page_dl_gnn .sct_med_cddp .med_img_bg {
  left: 120px;
  top: 290px;
}

.page_dl_gnn .sct_med_ztmm .med_img_pop {
  left: 285px;
  top: 70px;
}

.page_dl_gnn .sct_med_ztmm .med_img_bg {
  top: 160px;
}

.page_dl_gnn .sct_med_scqx .med_img_pop {
  top: 215px;
}

.page_dl_gnn .sct_med_scqx .med_img_bg {
  left: 220px;
  top: 300px;
}

.page_dl_gnn .sct_med_ztwjj .med_img_pop {
  left: 290px;
  top: 22px;
}

.page_dl_gnn .sct_med_ztwjj .med_img_pop_r_t {
  left: 572px;
  top: 89px;
}

.page_dl_gnn .sct_med_ztwjj .med_img_bg {
  left: 780px;
  top: 165px;
}

/*****page_dl_app_gnn****/

.page_dl_app_gnn {
}

.page_dl_app_gnn .bn_cnt {
  margin: 188px 0 0 136px;
}

.page_dl_app_gnn .bn_dl {
  margin-top: 50px;
  /* margin-left: 14px; */
}

.page_dl_app_gnn .bn_btn_dl {
  display: block;
  position: relative;
}

.page_dl_app_gnn .bn_btn_dl + .bn_btn_dl {
  margin-top: 20px;
}

.page_dl_app_gnn .bn_btn_dl > img {
  display: block;
}

.page_dl_app_gnn .bn .qr {
  float: left;
  margin-left: 25px;
}

.page_dl_app_gnn .bn .qr_img {
  display: block;
  width: 110px;
  height: 110px;
  margin: auto;
}

.page_dl_app_gnn .bn .qr_txt {
  color: #fff;
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
}

/**/

.page_dl_app_gnn .sct_med .med_txt_tit {
  color: #000;
  font-size: 48px;
  font-weight: bold;
}

.page_dl_app_gnn .sct_med .med_txt_tit .fem {
  color: #f71828;
}

.page_dl_app_gnn .sct_med .med_txt_text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 30px;
  margin-top: 15px;
}

.page_dl_app_gnn .sct_med_day {
  height: 911px;
}

.page_dl_app_gnn .sct_med_day .med_txt {
  left: 30px;
  top: 125px;
}

.page_dl_app_gnn .sct_med_day .med_img {
  left: 180px;
  top: 85px;
}

.page_dl_app_gnn .sct_med_zt {
  height: 858px;
}

.page_dl_app_gnn .sct_med_zt .med_txt {
  left: 500px;
  top: 290px;
}

.page_dl_app_gnn .sct_med_zt .med_img {
  left: 763px;
  top: 60px;
}

.page_dl_app_gnn .sct_med_step {
  height: 818px;
}

.page_dl_app_gnn .sct_med_step .med_txt {
  left: 620px;
  top: 345px;
}

.page_dl_app_gnn .sct_med_step .med_img {
  left: 182px;
  top: 90px;
}

.page_dl_app_gnn .sct_med_play {
  height: 650px;
}

.page_dl_app_gnn .sct_med_play .med_txt {
  left: 198px;
  top: 295px;
}

.page_dl_app_gnn .sct_med_play .med_img {
  left: 756px;
  top: 58px;
}

.page_dl_app_gnn .sct_med_ope {
  height: 500px;
}

.page_dl_app_gnn .sct_med_ope .med_txt {
  left: 622px;
  top: 256px;
}

.page_dl_app_gnn .sct_med_ope .med_img {
  left: 125px;
  top: 76px;
}

/*****page_dl_app_gnn****/

.page_dl_app_gdk .sct_med .med_txt_tit {
  color: #e62e2e;
  font-size: 48px;
  font-weight: bold;
}

.page_dl_app_gdk .sct_med .med_txt_text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 30px;
  margin-top: 15px;
}

.page_dl_app_gnn .sct_med_dk {
  height: 700px;
}

.page_dl_app_gnn .sct_med_dk .med_txt {
  left: 786px;
  top: 240px;
}

.page_dl_app_gnn .sct_med_dk .med_img {
  left: 70px;
  top: 60px;
}

.page_dl_app_gnn .sct_med_zg {
  height: 690px;
}

.page_dl_app_gnn .sct_med_zg .med_txt {
  left: 102px;
  top: 260px;
}

.page_dl_app_gnn .sct_med_zg .med_img {
  left: 600px;
  top: 100px;
}

.page_dl_app_gnn .sct_med_gh {
  height: 690px;
}

.page_dl_app_gnn .sct_med_gh .med_txt {
  left: 784px;
  top: 264px;
}

.page_dl_app_gnn .sct_med_gh .med_img {
  left: 20px;
  top: 70px;
}

.page_dl_app_gnn .sct_med_cp {
  height: 690px;
}

.page_dl_app_gnn .sct_med_cp .med_txt {
  left: 100px;
  top: 248px;
}

.page_dl_app_gnn .sct_med_cp .med_img {
  left: 700px;
  top: 60px;
}

.page_dl_app_gnn .gnnapp_gn {
  width: 406px;
  height: 800px;
  position: absolute;
  top: 36px;
  right: 36px;
}

.page_dl_app_gnn .gnnapp_gn .swiper-slide p {
  color: #333;
  font-size: 24px;
  text-align: center;
  line-height: 32px;
}

.page_dl_app_gnn .gnnapp_gn .swiper-slide p:first-child {
  margin-top: 5px;
}

.page_dl_app_gnn .gnnapp_gn .swiper-slide span {
  color: #ff1a1a;
}

.med_txt .swiper_nav {
  margin: 20px 0 0 16px;
}

.med_txt .swiper_nav li {
  width: 144px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-size: 20px;
  color: #ee553e;
  border: 2px solid #d94c39;
  float: left;
  margin: 0 8px;
  border-radius: 56px;
  cursor: pointer;
  box-shadow: 0px 3px 5px 5px #fae8e8;
}

.med_txt .swiper_nav li:hover,
.med_txt .swiper_nav li.active {
  color: #fff;
  background-image: linear-gradient(to right, #fd793a, #ff1217);
}

.page_dl_app_gnn .gnnapp_lb2 {
  width: 358px;
  height: 722px;
  position: absolute;
  top: 72px;
  left: 60px;
}

.med_txt .btn_nav2 {
  margin: 140px 0 0 0;
}

.med_txt .btn_nav2 li {
  width: 194px;
  height: 66px;
  line-height: 62px;
  border-radius: 66px;
  font-size: 26px;
  font-weight: bold;
}

.swiper_txt .swiper_txt_cnt {
  display: none;
}

.swiper_txt .swiper_txt_cnt.active {
  display: block;
}

.med_txt .med_sbu_tit {
  font-size: 30px;
  color: #333;
}

.med_txt .med_tit {
  font-size: 42px;
  color: #333;
  margin-top: 30px;
}

.tsgn_wrap {
  position: absolute;
  left: 0;
  bottom: 60px;
}

.tsgn_wrap .tsgn_box {
  float: left;
  width: 192px;
  margin: 0 20px;
  cursor: pointer;
}

.tsgn_wrap .tsgn_box.active {
  width: 218px;
}

.tsgn_wrap .tsgn_box .big_img {
  display: none;
}

.tsgn_wrap .tsgn_box.active .big_img {
  display: block;
}

.tsgn_wrap .tsgn_box.active .big_img img,
.tsgn_wrap .tsgn_box .sub_img img {
  width: 100%;
  border: 1px solid red;
  display: block;
}

.tsgn_wrap .tsgn_box .sub_img {
  position: relative;
}

.tsgn_wrap .tsgn_box.active .sub_img {
  display: none;
}

.tsgn_wrap .tsgn_box .sub_img .pic_cover {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.tsgn_wrap .tsgn_box .tsgn_icon img {
  display: block;
  width: 60px;
  margin: 0 auto;
}

.tsgn_wrap .tsgn_box .tsgn_icon {
  text-align: center;
  margin-top: 154px;
}

.tsgn_wrap .tsgn_box .tsgn_icon p {
  font-size: 18px;
  color: #333;
  margin-top: 13px;
  margin-bottom: 26px;
}

.tsgn_wrap .tsgn_box.active .tsgn_icon {
  margin-top: 0;
}

.tsgn_wrap .prd_intro {
  line-height: 30px;
  font-size: 18px;
  margin-top: 15px;
  color: #adadad;
  text-align: center;
}

.tsgn_wrap .tsgn_box.active .prd_intro {
  margin-top: 6px;
  color: #333;
}

.page_dl_app_gnn .sct_med_step .title {
  font-size: 42px;
  color: #333;
  text-align: center;
  margin-top: 26px;
}

.img_wrap img {
  display: block;
  position: relative;
  left: 50%;
  width: 1920px;
  margin-left: -960px;
}

.sct_med_ope .big_title {
  font-size: 37px;
  color: #333;
  text-align: center;
  margin-top: 25px;
}

.sct_med_ope .sub_title {
  font-size: 30px;
  color: #333;
  text-align: center;
  margin-top: 30px;
}

.sct_med_ope .course_list {
  margin: 66px 0 0 60px;
  overflow: hidden;
}

.sct_med_ope .course_list li {
  float: left;
  width: 334px;
  height: 182px;
  margin: 0 16px;
  cursor: pointer;
  position: relative;
}

.sct_med_ope .course_list li .cover_img {
  position: relative;
}

.sct_med_ope .course_list li .cover_img > div {
  width: 100px;
  height: 34px;
  line-height: 30px;
  border: 2px solid #fffde9;
  border-radius: 34px;
  display: block;
  position: absolute;
  bottom: 16px;
  left: 118px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.sct_med_ope .course_list li .intro_box {
  height: 182px;
  top: 100%;
  bottom: auto;
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  background: rgba(227, 3, 3, 0.87);
  padding: 14px 25px 10px;
  position: absolute;
  left: 0;
  right: 0;
  transition: top 0.5s ease;
}

.sct_med_ope .course_list li:hover .intro_box {
  top: 0;
  bottom: 0;
}

.sct_med_ope .course_list li .intro_box p {
  line-height: 42px;
  font-size: 25px;
  text-align: center;
  color: #fff;
}

.sct_med_ope .course_list li .intro {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*****page_about*****/

.page_about .bn {
  height: 500px;
  background: #000019 url(../images/bg_about_bn.png) no-repeat center;
  overflow: hidden;
}

.page_about .bn > img {
  display: block;
  position: relative;
  left: 50%;
  width: 1920px;
  margin-left: -960px;
}

.about_nav_wrap {
  background: #000;
}

.about_nav {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
}

.about_nav_item {
  float: left;
  color: #fff;
  font-size: 16px;
  width: 20%;
  text-align: center;
  line-height: 60px;
}

.about_nav_item > a {
  display: inline-block;
}

.about_nav_item > a.active {
  position: relative;
  color: #ff9728;
}

.about_nav_item > a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff9728;
}

.page_about .sct_p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  letter-spacing: 1px;
}

/*page_aboutus*/

.page_about .sct_cpbrief {
  padding-bottom: 45px;
}

.page_about .sct_cpbrief .sct_cap {
  padding: 60px 0 30px;
}

/**/

.page_about .sct_devhistory {
  position: relative;
  height: 620px;
}

.page_about .sct_devhistory > .comm_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.page_about .sct_devhistory .sct_cap {
  padding: 80px 0 115px;
}

.page_about .sct_devhistory .his_item {
  position: absolute;
  text-align: center;
}

.page_about .sct_devhistory .his_item_step1 {
  left: 50px;
  top: 286px;
}

.page_about .sct_devhistory .his_item_step2 {
  left: 355px;
  top: 230px;
}

.page_about .sct_devhistory .his_item_step3 {
  left: 640px;
  top: 226px;
}

.page_about .sct_devhistory .his_item_step4 {
  left: 916px;
  top: 286px;
}

.page_about .sct_devhistory .his_item_tit {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.page_about .sct_devhistory .his_item_txt {
  font-size: 16px;
  color: #545454;
  line-height: 1.8;
}

.sct_devhistory {
  height: auto !important;
}

/**/

.page_about .sct_cert {
  padding-bottom: 170px;
}

.page_about .sct_cert .sct_cap {
  padding: 80px 0;
}

/*page_disclaimer*/

.page_about .sct_disclaimer {
  padding-bottom: 90px;
}

.page_about .sct_disclaimer .sct_cap {
  padding: 60px 0 30px;
}

.page_about .sct_disclaimer .sct_p {
  margin-bottom: 50px;
}

/*page_contactus*/

.page_about .sct_contact {
  padding: 40px 0 40px;
}

.page_about .sct_contact .subsct {
  font-size: 18px;
}

.page_about .sct_contact .subsct_tit {
  font-size: 26px;
  line-height: 1;
  color: #ff9102;
  padding-left: 20px;
  border-left: 6px solid #ff9102;
  margin-bottom: 35px;
}

.page_about .sct_contact .subsct_bd {
  padding-left: 25px;
  overflow: hidden;
}

.subsct_bd .info_item {
  margin-bottom: 40px;
  width: 500px;
  float: left;
  height: 140px;
}

.subsct_bd .info_item .info_tit {
  font-size: 21px;
  color: #797979;
  margin-bottom: 16px;
}

.subsct_bd .info_item span {
  color: #000;
  font-size: 21px;
  margin-bottom: 40px;
  display: block;
  line-height: 1.8;
}

.subsct_bd .info_item {
}

.page_about .sct_contact .fig_group + .fig_group {
  margin-top: 50px;
}

.page_about .sct_contact .fig_group > img {
  margin: 15px 0 15px -20px;
}

.page_about .table_contact td {
  vertical-align: top;
  padding-bottom: 70px;
}

.page_about .table_contact td:first-child {
  width: 450px;
}

.page_about .sct_contact .fig_name {
  color: #666;
  margin-bottom: 20px;
}

.page_about .sct_contact .fig_inline .fig_name {
  margin-bottom: 0;
  margin-left: 80px;
}

.page_about .sct_contact .fig_val {
  color: #000;
}

.page_about .table_contact .fig_val + .fig_val {
  margin-top: 20px;
}

/*page_cooperation*/

.page_about .sct_cooperation {
  padding-bottom: 40px;
}

.page_about .sct_cooperation .sct_cap {
  padding: 60px 0 30px;
}

.page_about .sct_cooperation .sct_p {
  margin-bottom: 60px;
}

.page_about .sct_cooperation .sct_p .fem {
  display: inline-block;
  font-size: 26px;
  color: #000;
  margin-bottom: 10px;
}

.page_about .sct_cooperation .fig_mail {
  margin-left: 100px;
}

.swiper-btn-pre,
.swiper-btn-next {
  z-index: 10;
}

/*page_metadata*/

.metadata_nav_wrap {
  background: #000;
}

.metadata_nav {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
}

.metadata_nav_item {
  float: left;
  color: #fff;
  font-size: 16px;
  width: 33.3333%;
  text-align: center;
  line-height: 60px;
}

.metadata_nav_item > a {
  display: inline-block;
}

.metadata_nav_item > a.active {
  position: relative;
  color: #ff9728;
}

.metadata_nav_item > a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff9728;
}

.meta_datacnt {
  margin-top: 100px;
}

.meta_datacnt .info_list {
  padding-bottom: 60px;
}

.meta_datacnt .info_item:first-child .info_item_tit:before {
  height: 0;
}

.meta_datacnt .info_item:last-child .info_item_cnt:before {
  height: 0;
}

.meta_datacnt .info_item_tit {
  float: left;
  position: relative;
  width: 130px;
  height: 100%;
  font-size: 18px;
  color: #666;
  text-align: right;
  margin-right: 25px;
  margin-top: 2px;
}

.meta_datacnt .info_item_tit:before {
  content: "";
  position: absolute;
  top: -2px;
  right: -29px;
  width: 4px;
  height: 10px;
  background: #e3f4ff;
}

.meta_datacnt .info_item_tit:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: 4px;
  right: -32px;
  background: #55b9ff;
  border-radius: 50%;
}

.meta_datacnt .info_item_cnt {
  position: relative;
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  padding-left: 40px;
  padding-bottom: 50px;
  overflow: hidden;
}

.meta_datacnt .info_item_cnt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 0;
  width: 4px;
  background: #e3f4ff;
}

.meta_datacnt .info_item_txt {
  margin-bottom: 20px;
}

.meta_datacnt .info_item_menu {
  padding: 20px 25px 5px;
  background: #f4fbff;
  overflow: hidden;
}

.meta_datacnt .info_item_menu_obj {
  display: list-item;
  list-style-type: Circle;
  list-style-position: inside;
  float: left;
  width: 25%;
  color: #5e92b6;
  margin-bottom: 15px;
}

br.for_h5 {
  display: none;
}

.meta_dic {
  margin-top: 25px;
  margin-bottom: 25px;
}

.meta_dic_iframe {
  display: block;
  width: 100%;
  height: 800px;
  padding: 0 40px;
}

/*mask*/

.mask {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #eaeaea;
  background: rgba(0, 0, 0, 0.5);
}

.pop_v {
  position: fixed;
  z-index: 101;
  left: 0;
  right: 0;
  top: 50%;
  width: 1000px;
  margin: auto;
  margin-top: -270px;
}

.pop_v video {
  display: block;
  width: 100%;
}

.pop_v .btn_close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ee2929;
  font-size: 40px;
  cursor: pointer;
}

.s_index01 {
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_comm_bn.jpg") no-repeat center;
}

#cur1 .nav1,
#cur2 .nav2,
#cur3 .nav4,
#cur4 .nav4,
#cur5 .nav5,
#cur6 .nav6 {
  color: #00c6ff;
}

.inner_banner {
  position: relative;
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_about_bn.png") no-repeat center !important;
}

.inner_banner .slide_txt {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  top: 150px;
}

.inner_banner .slide_img_frame,
.inner_banner .slide_img_bg {
  position: absolute;
  right: 50%;
  margin-right: -562px;
  top: 106px;
}

.long_pic {
  text-align: center;
  margin-top: 20px;
}

.header {
  width: 100%;
}

.maps .swiper_tab .swiper-pagination-switch {
  text-indent: -899px;
  overflow: hidden;
  width: 560px;
  margin: 0;
  height: 80px;
}

.maps .comm_wrap {
  position: relative;
}

.maps .comm_wrap .swiper_tab_scene {
  position: absolute;
  left: 50%;
  top: 60px;
  z-index: 10;
  margin-left: -555px;
}

.page_about p.sct_p {
  text-indent: 0;
  line-height: 2 !important;
}

.page_yyfn .sct_cap.long_txt,
.page_yyfn .sct_cap .sct_tit {
  text-align: left;
  opacity: 1;
}

.page_yyfn .sct_cap p {
  opacity: 0.5;
  margin: 10px 0 20px 0;
}

.page_yyfn .sct_cap ul {
  opacity: 0.7;
  font-size: 17px;
}

.page_yyfn .sct_cap ul li {
  margin-bottom: 10px;
}

.page_yyfn .sct_cap ul strong {
  color: #4477ea;
  font-weight: bold;
  margin-right: 10px;
}

.page_ptzd.page_itg_info .pt_depot .pt_cnt {
  top: 105px;
}

.page_ptzd.page_itg_info .pt_ai .pt_cnt {
  top: 115px;
}

.bn_btn {
  display: inline-block;
  width: 140px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  color: #ffa200;
  border: 1px solid #ffa200;
  transition: 0.3s all ease-out;
  font-size: 16px;
}

.bn_btn:hover {
  background: #ffa200;
  color: #fff;
}

.book_dotnav .swiper-pagination-switch {
  width: 10px;
  height: 10px;
  background: #dbdde2;
  border-radius: 50px;
  margin: 0 6px !important;
}

.book_dotnav .swiper-pagination-switch.swiper-active-switch {
  background: #3681be;
}

.page_about .itg_info_scene_carousel {
  height: 500px;
}

.page_itg_info .itg_info_scene_carousel {
  height: 700px;
}

.swiper-container-v {
  background: #eee;
}

.swiper-container.swiper-container-v,
.swiper-container.swiper-container-v .swiper-slide {
  width: 100%;
  height: 500px;
}

.swiper_tab.page_about_pagination .swiper-pagination-switch .icon {
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/icon_page_about_sp1.png") no-repeat;
}

.swiper_tab.page_about_pagination .swiper-pagination-switch .icon.icon_tgyw02 {
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/icon_page_about_sp1.png") no-repeat -181px 0;
}

.page_about_pagination.swiper_tab
.swiper-pagination-switch.swiper-active-switch
.icon {
  background-position-y: -80px !important;
}

.slider_container {
  height: 550px;
  overflow: hidden;
}

.slider_txt {
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  margin-left: -600px;
  top: 150px;
  line-height: 1.5;
  font-weight: normal;
  width: 700px;
}

.slider_txt.no_sub_txt {
  margin-top: 50px;
}

.slider_txt h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.slider_txt p {
  margin-bottom: 20px;
}

.pic_server_ways {
  display: none;
  width: 100%;
}

.btn_menu {
  display: none;
}

.page_itg_info .pt_depot.item2 .pt_img {
  top: 40px;
}

.page_itg_info .pt_data.item3 .pt_img {
  top: 60px;
}

.page_itg_info .pt_data.item3 .pt_cnt {
  top: 160px;
}

.tyzt_wrap {
  overflow: hidden;
  margin-top: 50px;
}

.tyzt_item {
  width: 320px;
  padding: 20px 25px;
  height: 350px;
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_lhty_column01.png") no-repeat;
  color: #fff;
  font-size: 17px;
  line-height: 28px;
  text-align: justify;
  display: inline-block;
  box-sizing: content-box;
}

.tyzt_item .tit_icon {
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_lhty_tit.png") no-repeat;
  width: 36px;
  height: 6px;
  margin-bottom: 10px;
}

.tyzt_item.t1 {
  padding-top: 100px;
  height: 230px;
  margin-right: 45px;
  float: left;
}

.tyzt_item.t2 {
  padding-top: 70px;
  height: 260px;
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_lhty_column02.png") no-repeat;
  margin-right: 40px;
  float: left;
}

.tyzt_item.t3 {
  padding-top: 80px;
  height: 250px;
  background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_lhty_column03.png") no-repeat;
  float: right;
}

.chart_h5 {
  display: none;
}

.yjsm_comm {
  text-align: center;
  position: static !important;
  padding: 80px 0;
}

.yjsm_wrap {
  display: inline-block;
  vertical-align: middle;
  margin-right: 150px;
}

.yjsm_pic {
  display: inline-block;
  vertical-align: middle;
}

.yjsm_wrap h1 {
  font-size: 28px;
  color: #000;
  margin-bottom: 50px;
}

.yjsm_wrap h2 {
  font-size: 22px;
  color: #000;
  margin-bottom: 14px;
  background: url("../images/bg_about_titline.png") no-repeat left bottom;
  text-align: left;
}

.slogan_wrap {
  margin-bottom: 30px;
  text-align: left;
}

.yjsm_wrap p {
  font-size: 18px;
  color: #797979;
  text-align: left;
}

.yjsm_wrap img {
}

.sct_cooperation .comm_wrap p {
  font-size: 19px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sct_cooperation .comm_wrap ul li {
  font-size: 19px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.icon_arrow {
  display: none;
}

.sct_info_scene .scene_item img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.dl_tit {
  text-align: center;
  font-size: 21px;
  color: #000;
  margin-bottom: 20px;
}

.dl_txt {
  text-align: center;
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  width: 80%;
  margin: 0 auto;
}

.slider_column_wrap {
  position: relative;
}

.no_left_padding .comm_wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
}

/*!*--是配手机--*!*/

@media screen and (max-width: 1000px) {
  .no_left_padding .swiper-container,
  .no_left_padding .swiper_tab,
  .no_left_padding .sct_cap {
    margin: 0 30px;
    width: calc(100% - 60px) !important;
  }

  .no_left_padding .swiper_tab {
    width: calc(100% - 60px) !important;
  }

  .btn_menu {
    display: block;
    background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/icon_menu.png") no-repeat;
    width: 26px;
    height: 23px;
    position: absolute;
    right: 30px;
    top: 22px;
  }

  .page_wrap {
    min-width: 200px !important;
  }

  .page_index .sct_brief .sct_cap,
  .sct_dl .sct_cap,
  .sct_qsserver .sct_cap,
  .sct_cap {
    padding: 0 0 35px 0 !important;
  }

  .page_index .sct_brief {
    padding-bottom: 35px;
  }

  .sct_partner .sct_cap {
    padding-top: 35px;
  }

  .nav_item {
    display: block;
    float: none !important;
    font-size: 14px !important;
  }

  #cur1 .nav1,
  #cur2 .nav2,
  #cur3 .nav3,
  #cur4 .nav4,
  #cur5 .nav5,
  #cur6 .nav6 {
    color: #6983ff;
    background-image: -webkit-linear-gradient(
        180deg,
        rgb(40, 43, 60) 0%,
        rgb(27, 29, 39) 100%
    );
    border-right: 2px solid #2c50ff;
    border-right: 2px solid #2c50ff;
    width: calc(100% - 2px);
  }

  .nav {
    position: absolute;
    right: 0;
    top: 63px;
    background: #15171f;
    display: none;
    padding-bottom: 20px;
  }

  .nav_item {
    display: block;
    float: none !important;
    line-height: 40px;
    margin-left: 0 !important;
    text-align: left !important;
    font-size: 22px !important;
    padding: 0 !important;
    position: static !important;
    line-height: 60px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 30px !important;
    display: block;
  }

  .nav_item_main {
    position: static !important;
  }

  .nav .nav_item_main {
    position: static !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 0 0 40px;
    background: none;
    font-size: 14px;
  }

  .nav .link_group {
    padding: 0px !important;
  }

  .nav_item_main .link_group {
    float: none !important;
    border: none !important;
  }

  .link_group:nth-child(2) {
    margin-top: 10px;
  }

  .nav .link_group_tit {
    margin-bottom: 10px;
  }

  .nav .nav1 {
    margin-left: 30px;
    text-align: left;
  }

  .nav span.icon {
    background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_icon_top_menu_sp.png") no-repeat left 13px;
    background-size: 300px;
    display: inline-block;
    width: 40px;
    height: 50px;
    vertical-align: middle;
  }

  .nav .nav2 span.icon {
    background-position: left -179px;
  }

  .nav .nav4 span.icon {
    background-position: left -279px;
  }

  .nav .nav5 span.icon {
    background-position: left -379px;
  }

  .nav .nav6 span.icon {
    background-position: left -479px;
  }

  #cur1 .nav1 .icon,
  #cur2 .nav2 .icon,
  #cur3 .nav3 .icon,
  #cur4 .nav4 .icon,
  #cur5 .nav5.icon,
  #cur6 .nav6 .icon {
    background-position-x: -216px !important;
  }

  .nav .link_item {
    font-size: 19px;
    line-height: 1.7 !important;
  }

  .comm_wrap {
    width: auto;
  }

  .comm_wrap .sct_fig_group_col3 {
  }

  .comm_wrap .sct_fig_group_col3 .sct_fig {
    float: none;
    margin: 0 auto;
    width: calc(100% - 0px);
    margin-bottom: 20px;
    padding-left: 40px;
  }

  .page_itg_info .comm_wrap .sct_fig_group_col3 .sct_fig {
    width: calc(100% - 40px);
  }

  .sct_qsserver .comm_wrap {
  }

  .sct_qsserver .block_ct {
    width: 100%;
    display: block;
  }

  .index_bn_carousel .carousel_item_in {
    width: auto !important;
  }

  .inner_banner.bn,
  .bn .carousel_item_in {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .slider_txt {
    font-size: 20px !important;
    position: static !important;
    margin-left: 30px !important;
    margin-top: 15px;
  }

  .page_index .s_index01 .slider_txt {
    top: 100px;
  }

  #viewCpFilm {
    margin: 0;
    left: 30px !important;
    top: auto;
    bottom: 30px;
    zoom: 0.6;
  }

  .slider_txt h2 {
    font-size: 20px;
    width: 200px;
  }

  .slider_txt span {
    font-size: 16px;
  }

  .slider_txt p {
    font-size: 13px;
    width: 190px;
  }

  .block_ct {
    display: none !important;
  }

  .pic_server_ways {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto;
  }

  .index_bn_carousel .slide_txt {
    top: 100px !important;
    width: 90% !important;
    margin-left: 5%;
  }

  .slide_img_wrap {
    margin-left: -50px;
    right: auto;
    left: 50%;
    bottom: 40px;
    top: auto !important;
  }

  .carousel_item_in .bn_btn {
    left: 30px;
    margin-left: 0px;
    top: auto;
    bottom: 30px;
    zoom: 0.6;
  }

  .btn_view {
    left: 50% !important;
    margin-left: -62px;
    top: auto !important;
    bottom: 70px;
  }

  .page_index .sct_brief .sct_fig_mask,
  .page_metadata .sct_prov .sct_fig_mask {
    font-size: 14px;
    line-height: 1.5;
  }

  .sct_qsserver .comm_wrap {
    padding: 0 0;
    margin: 0;
  }

  .footer_top {
    display: none;
  }

  .comm_wrap {
    font-size: 12px;
    padding: 35px 30px !important;
  }

  .comm_wrap .sct_cap {
    padding-top: 0 !important;
  }

  .about_nav {
    width: 100%;
    height: 30px;
  }

  .about_nav_item {
    width: calc( 100% / 3 );
    line-height: 30px;
    height: 30px;
  }

  .about_nav_item > a {
    font-size: 14px;
  }

  .comm_wrap {
    padding: 0 20px;
  }

  .sct_tit {
    font-size: 21px !important;
  }

  .sct_p {
    text-align: left;
    font-size: 16px !important;
  }

  .sct_p .fem {
    font-size: 20px !important;
  }

  .page_index .bn,
  .inner_banner {
    height: 280px !important;
    overflow: hidden;
  }

  .inner_banner {
    height: 260px !important;
  }

  .slide_img_wrap {
    zoom: 0.5;
  }

  .index_bn_carousel .swiper-pagination-switch {
    zoom: 0.6;
  }

  .header {
    zoom: 0.7;
  }

  .swiper_tab swiper_tab_pd index_pd_pagination {
    text-align: center;
  }

  .swiper_tab .swiper-pagination-switch {
    float: none;
    display: inline-block;
    margin: 0 0px !important;
    width: 33.33%;
    font-size: 0;
    overflow: hidden;
  }

  .swiper_tab .swiper-pagination-switch .txt {
    font-size: 12px;
  }

  .sv_item {
    display: none !important;
  }

  .sct_qsserver {
    height: auto;
    overflow: hidden;
    padding-bottom: 40px;
  }

  .sct_qsserver .comm_wrap {
    position: static;
  }

  .sct_dl .dl_l {
    width: calc(100% - 0px);
    float: none !important;
    margin-bottom: 10px !important;
  }

  .sct_dl .dl_r {
    margin: 0 !important;
    width: 100% !important;
  }

  .sct_dl .dl_r .clear {
    text-align: center !important;
  }

  .sct_dl .dl_r .btn_warn,
  .sct_dl .dl_r .btn_high {
    display: none !important;
  }

  .sct_dl .dl_r .btn_more {
    float: none !important;
    margin: 0 !important;
    font-size: 15px !important;
    display: none !important;
  }

  .sct_dl .dl_r .dl_cnt {
    margin-left: 0 !important;
  }

  .btn_download_wrap {
    display: none;
  }

  .dl_tit {
    text-align: center;
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }

  .dl_text {
    font-size: 12px !important;
    line-height: 1.4 !important;
    width: 100%;
    float: none !important;
    opacity: 0.7 !important;
    margin-bottom: 20px !important;
  }

  .dl_text br {
    display: none !important;
  }

  .sct_dl .swiper-wrapper .swiper-slide:nth-of-type(5) img,
  .sct_dl .swiper-wrapper .swiper-slide:nth-of-type(6) img {
    width: 150px !important;
    display: block;
    margin: 0 auto !important;
  }

  .sct_dl .swiper-wrapper .swiper-slide:nth-of-type(5) .dl_app_gnn {
  }

  .swiper_tab .swiper-pagination-switch .icon {
    zoom: 0.6;
  }

  .swiper-btn {
    zoom: 0.6;
  }

  .swiper-btn-pre {
    left: 8px !important;
    z-index: 10;
    -webkit-transform: scale(0.8);
  }

  .swiper-btn-next {
    right: 8px !important;
    z-index: 10;
    -webkit-transform: scale(0.8);
  }

  .sct_brief .sct_fig_img,
  .sct_fig_img {
    zoom: 0.55;
  }

  .sct_brief .sct_fig,
  .sct_fig {
    line-height: 80px;
  }

  .page_yyfn .sct_fig_txt {
    font-size: 14px !important;
  }

  .page_yyfn .sct_fig {
    padding-left: 40px !important;
  }

  .page_yyfn .sct_fig_img {
    margin-right: 20px;
  }

  .sct_brief .sct_fig:hover {
    line-height: 115px;
  }

  .sct_fig_mask {
    z-index: 10;
  }

  .sct_info_scene {
    position: relative;
  }

  .sct_info_scene .swiper_tab {
    width: 100%;
    margin-bottom: 10px !important;
  }

  .sct_info_scene .swiper-pagination-switch {
    width: 50% !important;
  }

  .sct_info_scene .scene_item img {
    width: 100%;
  }

  .page_about p.sct_p {
    line-height: 1.8 !important;
    text-align: justify;
    letter-spacing: 1.8px;
  }

  .long_txt {
    text-align: left;
    text-align: justify;
  }

  .long_pic {
    width: 100%;
  }

  .long_pic img {
    width: 100%;
  }

  .itg_info_scene_pagination .swiper-pagination-switch {
    width: 20% !important;
  }

  .page_ptzd .itg_info_scene_pagination .swiper-pagination-switch {
    width: 25% !important;
  }

  .inner_banner .slide_img_wrap {
  }

  .page_yyfn .js_ani .pt_img,
  .page_yyfn .js_ani .pt_cnt {
    position: static;
  }

  .page_yyfn .js_ani .pt_cnt .pt_txt {
    width: 100%;
  }

  .page_yyfn .js_ani .pt_img {
    width: 100%;
    margin-bottom: 20px !important;
  }

  .js_ani .pt_tit {
    font-size: 21px !important;
    text-align: center;
    line-height: 1.5;
  }

  .js_ani .pt_txt {
    font-size: 15px !important;
  }

  .page_yyfn .pt_ai {
    height: auto !important;
    padding: 35px 0 !important;
  }

  .page_itg_info .page_yyfn .pt_data,
  .page_itg_info .page_yyfn .pt_depot {
    height: auto !important;
  }

  .page_yyfn .swiper-container {
    width: 100%;
  }

  .page_yyfn .itg_info_scene_carousel {
    height: 280px !important;
  }

  .page_yyfn .sct_cap.long_txt p {
    font-size: 15px !important;
    text-align: justify;
  }

  .page_yyfn li {
    font-size: 15px !important;
    text-align: justify;
  }

  .sct_partner img {
    display: none;
  }

  .sct_partner img.for_h5 {
    display: block;
  }

  .nav4 {
    display: none !important;
  }

  .comm_wrap .pt {
    height: auto !important;
  }

  .comm_wrap .pt .pt_img {
    position: static;
    width: 50%;
    display: block;
    margin: 0px auto 20px auto;
  }

  .page_yyfn .comm_wrap .pt .pt_img {
    width: 60%;
  }

  .page_yyfn .swiper-btn {
    display: block;
  }

  .comm_wrap .pt .pt_cnt {
    position: static;
    width: 100%;
  }

  .comm_wrap .pt .pt_cnt .pt_txt {
    width: 100%;
  }

  .page_ptzd.page_itg_info .itg_info_scene_carousel {
    height: 340px !important;
  }

  .tyzt_wrap {
    overflow: hidden;
    margin-top: 30px;
  }

  .tyzt_item {
    width: 100%;
    padding: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    text-align: justify;
    background-size: cover;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    float: none !important;
    display: flex;
    margin-bottom: 5px;
  }

  .tyzt_item p {
    font-size: 14px;
  }

  .tyzt_item .tit_icon {
    background: url("https://cdn.upchina.com/project/upchinaWebSiteServer/images/bg_lhty_tit.png") no-repeat;
    width: 36px;
    height: 6px;
    margin-bottom: 10px;
    zoom: 0.6;
  }

  .tyzt_item.t1 {
    height: 150px;
    background-size: cover;
  }

  .tyzt_item.t2 {
    height: 150px;
    background-size: cover;
  }

  .tyzt_item.t3 {
    height: 150px;
    background-size: cover;
  }

  .tyzt_cnt {
    padding: 0 25px;
    display: inline-block;
  }

  .page_itg_info .long_pic {
    display: block;
  }

  .page_itg_info .long_txt p {
    font-size: 15px;
  }

  .page_itg_info .itg_info_scene_carousel {
    height: 400px;
  }

  .long_pic {
    display: none;
  }

  .page_about .long_pic {
    display: block;
  }

  .chart_h5 {
    display: block;
  }

  .chart_h5 .li_wrap {
    display: flex;
  }

  .chart_h5 .li_wrap .li_item {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    flex: 1 1 auto;
    margin: 0 5px;
    height: 80px;
  }

  .chart_h5 img {
    width: calc(100% + 60px);
    display: block;
    margin-left: -30px;
  }

  .chart_h5 img:nth-child(2) {
    display: none;
  }

  .sct_tit {
    vertical-align: middle;
    position: relative;
  }

  .sct_tit .tit {
    vertical-align: middle;
    line-height: 29px;
  }

  .sct_tit .btn_details {
    float: right;
    font-size: 12px;
    color: #ff9703;
    vertical-align: middle;
    line-height: 29px;
    background: url("../images/icon_arrow_up.png") no-repeat right center;
    background-size: 9px 5px;
    padding-right: 10px;
    position: absolute;
    right: 0;
    top: 0;
    display: block !important;
  }

  .btn_details.cur {
    background: url("../images/icon_arrow_down.png") no-repeat right center;
    background-size: 9px 5px;
  }

  .btn_download_wrap {
    display: none;
  }

  .dl_app_up .dl_side {
    display: none;
  }

  .sct_fig_group_col3 .sct_fig_img {
    margin-right: 20px;
  }

  .page_sln_hk .sct_fig_group_col3 .sct_fig:nth-child(3) .sct_fig_img {
    zoom: 0.5;
    position: relative;
    margin-left: -18px;
  }

  .page_index .sct_fig_group_col3 .sct_fig:nth-child(2) .sct_fig_img {
    zoom: 0.52;
    position: relative;
    margin-left: -8px;
  }

  .page_itg_info .sct_prov {
    padding-bottom: 35px;
  }

  .pt_txt li {
    line-height: 1.7;
    left: 0;
    background-size: 6px 6px;
    padding-left: 10px;
    background-position: left 8px !important;
  }

  .friend_link {
    overflow: hidden;
    text-align: left;
    display: none;
  }

  .friend_tit {
    float: left;
  }

  .link_wrap {
    float: left;
  }

  .link_wrap a {
    margin: 0 10px 0 0;
    line-height: 1.5;
    word-break: keep-all;
  }

  .sct_core {
    padding-bottom: 0;
  }

  .page_sln_hk .sct_grey .comm_wrap,
  .page_sln_hk .sct_white .comm_wrap {
    padding: 35px 25px;
  }

  .page_sln_hk .block_ct {
    display: block !important;
    width: 100%;
  }

  .page_sln_hk .sct_case {
    height: auto !important;
    padding-bottom: 0 !important;
  }

  .yjsm_comm {
    text-align: center;
    position: static !important;
    padding: 35px 0;
  }

  .yjsm_wrap {
    display: block;
    vertical-align: middle;
    margin-right: 150px;
    padding: 0 25px;
    width: 100%;
  }

  .yjsm_pic {
    display: inline-block;
    vertical-align: middle;
  }

  .yjsm_wrap h1 {
    font-size: 21px;
    color: #000;
    margin-bottom: 50px;
  }

  .yjsm_wrap h2 {
    font-size: 19px;
    color: #000;
    margin-bottom: 14px;
    background: url("../images/bg_about_titline.png") no-repeat left bottom;
    background-size: 45px 8px;
    text-align: left;
  }

  .slogan_wrap {
    margin-bottom: 30px;
    text-align: left;
  }

  .yjsm_wrap p {
    font-size: 16px;
    color: #797979;
    text-align: left;
  }

  .yjsm_comm img {
    width: 80%;
  }

  .page_about .itg_info_scene_pagination .swiper-pagination-switch {
    width: 7px !important;
    height: 7px !important;
    margin: 0 4px !important;
    display: inline-block;
  }

  .page_about .sct_info_scene .swiper_tab {
    text-align: center;
    top: 0;
    width: 100%;
    left: 0;
    margin-left: 0 !important;
  }

  .subsct_tit {
    font-size: 21px !important;
    padding-left: 12px !important;
  }

  .page_about .sct_contact .subsct {
    font-size: 15px;
  }

  .page_about .sct_contact .subsct_bd {
    padding-left: 0px;
  }

  .page_about .sct_contact .subsct_bd {
    padding-left: 25px;
    overflow: hidden;
  }

  .subsct_bd .info_item {
    margin-bottom: 30px;
    width: auto;
    float: none;
    height: auto;
  }

  .subsct_bd .info_item .info_tit {
    font-size: 16px;
    color: #797979;
    margin-bottom: 12px;
  }

  .subsct_bd .info_item span {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
    line-height: 1.8;
  }

  .subsct_bd .info_item {
    margin-bottom: 30px;
    width: auto;
    float: none;
    height: auto;
  }

  .subsct_bd .info_item .info_tit {
    font-size: 16px;
    color: #797979;
    margin-bottom: 10px;
  }

  .subsct_bd .info_item span {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
    line-height: 1.8;
    letter-spacing: 1.8px;
  }

  .page_about .sct_cooperation .fig_mail {
    margin-left: 0;
    display: block;
  }

  .page_about .sct_cooperation .sct_p .fem {
    text-align: center;
    display: block;
    font-size: 22px !important;
  }

  .sct_cooperation .sct_p span {
    font-size: 16px;
  }

  .sct_cooperation .sct_p br {
    display: block;
    line-height: 40px;
  }

  .sct_cooperation .comm_wrap p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    letter-spacing: 1.8px;
  }

  .sct_cooperation .comm_wrap ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: justify;
  }

  .page_sln_consult .switch {
    width: 100% !important;
  }

  .page_sln_consult .switch_scene .switch_cnt {
    width: 100%;
    margin-left: 0 !important;
  }

  .page_sln_consult .switch_scene .switch_cnt img {
    width: 100%;
  }

  .page_sln_consult .switch_tab {
    width: 100%;
    float: none !important;
    overflow: hidden;
  }

  .page_sln_consult .swiper-pagination-switch {
    float: left;
    width: 25%;
    margin: 0 !important;
  }

  .page_sln_consult .switch_tab_item {
    font-size: 16px !important;
    padding-right: 0 !important;
    text-align: center;
    line-height: 30px;
  }

  .switch_tab .swiper-active-switch .switch_tab_item:after {
    bottom: 0 !important;
    right: 0 !important;
    left: 20% !important;
    width: 60%;
    height: 2px;
    top: auto !important;
  }

  .page_sln_consult .comm_wrap .pt .pt_img,
  .page_yyfn .comm_wrap .pt .pt_img {
    width: 90%;
  }

  .pic_server_ways {
    position: relative;
  }

  .pic_server_ways a {
    width: 25%;
    height: 25%;
    display: block;
    position: absolute;
  }

  .pic_server_ways a:nth-of-type(1) {
    left: 0;
    top: 25%;
  }

  .pic_server_ways a:nth-of-type(2) {
    right: 0;
    top: 25%;
  }

  .pic_server_ways a:nth-of-type(3) {
    left: 0;
    bottom: 0;
  }

  .pic_server_ways a:nth-of-type(4) {
    right: 0;
    bottom: 0;
  }

  .pic_chart_pc {
    display: none !important;
  }

  .page_zxgs.page_sln_consult .switch_scene .switch_cnt {
    height: 200px;
  }

  .header .logo {
    margin: 15px 10px !important;
  }

  .dl_side_qr {
    display: none !important;
  }

  .index_pd_carousel {
    height: 370px !important;
  }

  .nav_item:hover:after {
    display: none;
  }

  .pop_v {
    width: 100% !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0;
  }

  .slider_txt p {
    margin-bottom: 10px;
    line-height: 1.8;
    letter-spacing: 0.2px;
    text-align: justify;
  }

  .nav_item_hasmenu {
    background: url("../images/icon_submenu_arrow.png") no-repeat calc(100% - 20px) 20px;
    background-size: 8px 15px;
  }

  .nav_item_hasmenu.cur {
    background: url("../images/icon_submenu_arrow_cur.png") no-repeat no-repeat calc(100% - 20px) 20px;
    background-size: 15px 8px;
  }

  .swiper_tab .swiper-pagination-switch.swiper-active-switch .txt:after {
    bottom: 9px;
    height: 1px;
    width: 36%;
  }

  .sct_info_scene .scene_item img.pic_h {
    width: 56%;
    margin: 0 auto;
  }

  .slider_container {
    height: 350px;
  }

  .page_about .itg_info_scene_carousel {
    height: 300px;
  }

  .page_about .sct {
    padding-bottom: 0;
  }

  .cur .sct_fig_in {
  }

  .cur .sct_fig_mask {
    top: 0 !important;
  }

  .sct_fig_mask {
    top: 100% !important;
  }

  .icon_arrow {
    background: url("../images/icon_arrow_hover.png") no-repeat center center;
    width: 18px;
    height: 11px;
    position: absolute;
    background-size: 70%;
    bottom: 5px;
    left: 50%;
    margin-left: -9px;
    display: block;
    z-index: 10;
  }

  .cur .icon_arrow {
    background: url("../images/icon_arrow_hover_cur.png") no-repeat center center;
    width: 18px;
    height: 11px;
    background-size: 70%;
    bottom: auto !important;
    top: 5px;
  }

  .footer_bt .comm_wrap {
    padding: 0 15px !important;
  }

  .friend_tit {
    display: none;
  }

  .link_wrap {
    text-align: center;
  }

  .page_yyfn .sct_cap.long_txt {
    padding-bottom: 0px !important;
  }

  .dl_txt {
    font-size: 12px !important;
    width: 100%;
  }

  .dl_tit {
    font-size: 14px !important;
    width: 100%;
  }

  .sct_fig_group .sct_fig:nth-last-child(1) {
    margin-bottom: 0 !important;
  }

  .page_ptzd.page_itg_info .sct_prov {
    padding-bottom: 0 !important;
  }

  .sct_partner .sct_cap {
    padding-top: 35px !important;
  }

  .sct {
    padding-bottom: 20px;
  }

  .page_lhty {
  }

  .column_zt .sct_cap {
    padding-bottom: 0 !important;
  }

  .copyright {
    font-size: 11px;
  }

  .page_sln_hk .pt_txt br {
    display: none !important;
  }

  .maps .comm_wrap {
    padding: 0 !important;
  }

  .maps .swiper_tab .swiper-pagination-switch {
    text-indent: -899px;
    overflow: hidden;
    width: 50% !important;
    height: 40px !important;
    margin: 0 !important;
  }

  .page_about .inner_banner {
    height: 220px !important;
  }

  .page_yyfn .sct_fig_group {
    margin-bottom: 30px;
  }

  .page_yyfn .sct_fig_group:nth-last-child(1) {
    margin-bottom: 0 !important;
  }

  .page_about .slider_container {
    height: 330px !important;
  }

  .page_ptzd .sct_fig_group_col3 .sct_fig:nth-child(1) .sct_fig_img {
    margin-right: 32px;
    margin-left: 15px;
  }

  .page_ptzd .sct_fig_group_col3 .sct_fig:nth-child(3) .sct_fig_img {
    margin-right: 23px;
  }

  .page_index .sct_fig_group_col3 .sct_fig:nth-child(1) .sct_fig_img {
    margin-right: 29px;
  }

  .page_ptzd .sct_fig_group_col3 .sct_fig:nth-child(2) {
    padding-left: 32px;
  }

  .page_ptzd .sct_fig_group_col3 .sct_fig:nth-child(3) {
    padding-left: 37px;
  }

  .page_itg_info .sct_fig_group_col3 .sct_fig:nth-child(1) {
    padding-left: 32px;
  }

  .page_yyfn .sct_fig_group:nth-of-type(3) .sct_fig:nth-child(1) .sct_fig_img {
    margin-right: 11px;
  }

  .page_yyfn .sct_fig_group:nth-of-type(2) .sct_fig:nth-child(1) .sct_fig_img {
    margin-right: 11px;
  }

  .page_yyfn .sct_fig_group:nth-of-type(3) .sct_fig:nth-child(2) .sct_fig_img {
    margin-left: 3px;
  }

  .no_left_padding .long_txt .sct_tit {
    text-align: center;
  }

  .page_yyfn .sct_cap ul strong {
    font-weight: normal;
  }

  .sct_cooperation .sct_p.bold {
    font-weight: normal;
  }

  .sct_brief .sct_fig:hover {
    line-height: 80px;
    bottom: auto !important;
  }

  .sct_brief .sct_fig.cur {
    line-height: 126px;
  }

  .sct_fig_mask {
    display: flex;
    align-items: center;
    padding: 0 25px !important;
    height: 126px;
    visibility: hidden;
  }

  .cur .sct_fig_mask {
    visibility: visible;
  }

  br.for_h5 {
    display: block;
  }

  .hide_h5 {
    display: none;
  }

  .sct_partner .sct_cap .sct_subtit {
    padding: 0 30px;
  }

  .inner_banner .slide_img_frame,
  .inner_banner .slide_img_bg {
    margin-right: -482px;
  }
}

.green {
  border: 1px solid green;
}


.flex-box {
  display: flex;
}


.sct_pre {
  white-space: pre-line;
}

.sct_p2 {
  text-indent: 2em !important; /* 缩进两个字符 */
  margin-bottom: 20px !important;
}
.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  color: #333;
  font-size: 16px;

}

.custom-table th,
.custom-table td {
  border: 1px solid #ccc; /* 保留边框 */
  padding: 12px 15px;
  text-align: left;
  min-width:127px;
}
@media screen and (max-width: 1000px) {
  .custom-table th,
  .custom-table td {
    min-width:60px;
  }
}

.custom-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.custom-table tr:nth-child(even) td {
  background-color: #fafafa;
}
.no-select {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}

.allow-select {
  -webkit-user-select: text !important; /* Safari */
  -moz-user-select: text !important;    /* Firefox */
  -ms-user-select: text !important;     /* IE/Edge */
  user-select: text !important;         /* Standard */
}
