* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 微软雅黑;
}
body{
  background: #fff;
  color: #333;
  font-size: 16px;
}
ul,
li,
ol {
  list-style: none;
}
a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.fr {
  float: right;
}

.fl {
  float: left;
}
.fwb{
  font-weight: bold!important;
}
.p-12{
  padding: 12px;
}
.p-20{
  padding: 20px;
}
.pr-5 {
  padding-right: 5px;
}

.pl-5 {
  padding-left: 5px;
}
.pr-10 {
  padding-right:10px;
}

.pl-10 {
  padding-left: 10px;
}
.pt-5{
  padding-top: 5px;
}
.pt-10{
  padding-top: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-60 {
  margin-left: 60px;
}
.ml-5 {
  margin-left: 5px;
}
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mt-5{
  margin-top: 5px;
}
.mt-10{
  margin-top: 10px;
}
.mt-15{
  margin-top: 15px;
}
.mt-20{
  margin-top: 20px;
}
.mt-30{
  margin-top: 30px;
}
.mt-40{
  margin-top: 40px;
}
.mt-50{
  margin-top: 50px;
}
.mt-100{
  margin-top: 100px;
}
.text-color-red {
  color: #CF2931!important;
}
.text-color-black {
  color: #331414;
}
.gray6{
  color: #666!important;
}
.gray{
  color: #999!important;
}
.fz12 {
  font-size: 12px;
}
.fz14 {
  font-size: 14px;
}
.fz16 {
  font-size: 16px;
}
.fz18 {
  font-size: 18px;
}
.fz20 {
  font-size: 20px;
}
.fz24 {
  font-size: 24px;
}
.fz44 {
  font-size: 44px;
}
.fz52 {
  font-size: 52px;
}
.fz64 {
  font-size: 64px;
}
.block {
  display: block;
}
.flex {
  display: flex;
}

.cur {
  cursor: pointer;
}
.text-left {
  text-align: left
}
.text-center {
  text-align: center
}
.text-right {
  text-align: right
}
.inlineBlock {
  display: block;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
.flex_between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex_start_between{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flex_start{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex_start_start{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.flex_end{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flex_center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex_column{
  display: flex;
  flex-direction: column;
}
.flex_wrap{
  display: flex;
  flex-wrap: wrap;
}
.keep_all{
  word-break: keep-all;
}
/**/
.head {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 8px 0px;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
.head-logo img{
  width: 140px;
  height: 50px;
}
.comm_box {
  width: 100%;
  max-width: 1280px;
}

.btn {
  padding: 5px 10px;
  border-radius: 8px;
}

.btn_big {
  padding: 13px 30px;
  border-radius: 8px;
}

.btn_Solid {
  color: #fff;
  border: 1px solid rgb(79 70 229);
  background-color: rgb(79 70 229);
}
.btn_Solid:hover,.btn_Solid:active,.btn_Solid:focus{
  color: #fff;
}
.btn_plain {
  color: rgb(79 70 229);
  border: 1px solid rgb(79 70 229);
}

.btn_plain_gray {
  color: #333;
  border: 1px solid #e5e7eb;
}

.center_nav {
  max-width: 1280px !important;
  height:64px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
  position: sticky;
  top: 68px;
  z-index: 100;
  transition: top .3s ease;
  background: #fff;
  border-radius: 100px;
}

.center_nav .item {
  width: 192px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  background: #fff;
  border:0;
}

.center_nav .active {
  display: flex;
  align-items: center;
  width: 184px;
  height: 44px;
  opacity: 1;
  border-radius: 100px;
  background: #4F46E5;
  color: #fff;
  font-size: 16px;
}
.main-content-box{}
.main-content-left{
  width: 722px;
}
.main-content-right{
  flex:1;
  flex-shrink: 0;
  padding-left:80px;
}
.pp_list{
  display: grid;
  grid-template-columns: repeat(9,1fr);
  gap:40px;
}
.pp_list img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.pp_list img:hover {
  transform: translateY(-5px);
}
.pp_card{
  gap:15px;
}
.pp_card .pp_card_item{
  width: 300px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: rgba(36, 91, 219, 0.03) 0px 30px 20px -10px, rgba(36, 91, 219, 0.05) 0px 20px 16px -10px, rgba(36, 91, 219, 0.08) 0px 20px 12px -10px;
  padding:11px;
  border-radius: 8px;
  position: relative;
  border:1px solid #fff;
}
.pp_card .pp_card_item img{
  width: 80px;
  position: absolute;
  top:-40px;
  left:20px;
}
.pp_card .pp_card_item .s{
  padding:36px;
  border-radius: 8px;
  background-color: #fff;
}
.pp_card .pp_card_item .tit{
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}
.pp_card .pp_card_item .content{
  padding-top: 15px;
  font-size: 20px;
  height: 90px;
  color:#666;
}
.pp_about{
  gap:30px;
  padding-bottom: 50px;
}
.pp_about .pp_about_item{
  padding:84px 54px;
  background-color: rgb(247 248 250);
  flex:1;
}
.pp_about .pp_about_item:nth-child(1){
  border-top-right-radius: 100px;
}
.pp_about .pp_about_item:nth-child(2){
  border-bottom-left-radius: 100px
}
.pp_about .pp_about_item:nth-child(3){
  border-top-left-radius: 100px;
}
.pp_about .pp_about_item:nth-child(4){
  border-bottom-right-radius: 100px;
}
.pp_about .pp_about_item .tit{
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
}
.pp_about .pp_about_item .tit span.tl{
  display: block;
  width: 4px;
  height: 32px;
  border-radius: 2px;
  background: linear-gradient(137deg, rgb(80, 131, 251) 0%, rgb(51, 109, 244) 40%, rgb(111, 119, 236) 71%, rgb(188, 152, 249) 100%);
  margin-right:15px;
  font-size: 36px;
}
.pp_about .pp_about_item .content{
  padding: 25px;
}
.tabs-container-bg{
  background-image: url(../images/bg.png);
  background-size: 100% 100%;
}
/*  tabs  */
.tabs-container {
  padding-bottom: 50px;
  position: relative;
}
.tabs-nav {
  display: flex;
  background: #fff;
  width: 800px;
  padding:6px;
  border-radius: 100px;
  overflow: hidden;
  margin: auto;
}
.tab {
  padding: 16px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s;
  position: relative;
  flex:1;
  text-align: center;
}
.tab:hover {
  color: #4F46E5;
}
.tab.active {
  color: #fff;
  background: #4F46E5;
  border-radius: 100px;
}
.tab-content {
  display: none;
  padding: 20px;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
.tab-content-bg{
  background: white;
  margin-top: 60px;
  border-radius: 20px;
  box-shadow: rgba(101, 128, 177, 0.1) 0px 4px 50px 13px;
}
.pp_tabs_list{
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap:15px;
}
.pp_tabs_list img {
  display: block;
  width: 160px;
  height: 120px;
  transition: transform 0.3s;
}

.pp_tabs_list img:hover {
  transform: translateY(-5px);
}
.tab-content .tab-content-top{
  gap: 60px;
}
.tab-content .tab-content-top .tabs-big-img{
  width: 532px;
  flex-shrink: 0;
}
.tab-content .tab-content-top .tabs-big-img img{
  width: 100%;
  border-radius: 12px;
}
.footer_style{
  padding: 30px 0;
  border-top: 1px solid #e5e7eb;
}
/* 弹窗 */
#black {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#black .img_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  padding:20px;
  background: #fff;
}
.codepic {
  width:250px;
  display: block;
}
.shutDown{
  width: 30px;
  height: 30px;
  padding:5px;
  position: absolute;
  top: -25px;
  right: -25px;
  cursor: pointer;
  background: white;
  border-radius: 50%;
}
