/* 背景 */
.bg-white {
  background: #ffffff;
}

.bg-page {
  background: #f3f3f5;
}

.bg-gray-500 {
  background: #ededf0;
}

.padding-20 {
  padding: 20px;
  box-sizing: border-box;
}

.text-xl {
  font-size: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.bg-grey-500 {
  background: #ededf0;
}

.gap-20 {
  gap: 20px;
}


/* flex */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-1 {
  flex: 1;
}

.flex-none {
  flex: none;
}

.flex-auto {
  flex: auto;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}


/* grid */
.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-cols-12 {
  grid-template-columns: repeat(12, 1fr);
}

.grid-rows-1 {
  grid-template-rows: repeat(1, auto);
}

.grid-rows-2 {
  grid-template-rows: repeat(2, auto);
}

.grid-rows-3 {
  grid-template-rows: repeat(3, auto);
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}


/*  */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #f4f5f7;
  border: 1px solid #ffffff;
}

.ipart03 .btn img{
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.title1 {
  font-size: 24px;
}


.mb-20 {
  margin-bottom: .2rem;
}

.ipart02 .content .item {
  flex: 1;
}

.ipart02 .content .item .img_box {
  height: 5.4rem;
  position: relative;
}

.ipart02 .content .item .img_box img {
  width: 100%;
  height: 5.4rem;
  object-fit: cover;
}

.ipart02 .content .item .img_box .text_box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  padding: 12px;
  box-sizing: border-box;
}

.ipart02 .content .item .img_box .text_box .index_box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  padding-top: 84px;
  box-sizing: border-box;
} 

.ipart02 .content .item .img_box .text_box .index_box .tit{
  margin-bottom: 8px;
  margin-top: 16px;
  font-size: 24px;
} 

.ipart02 .content .item .img_box .text_box .index_box .con{
  font-size: 12px;
} 

.text-center {
  text-align: center;
}

.ipart05 .more-btn {
  width: 140px;
  height: 40px;
  background: #1d2129;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
}

.ipart06 .item {
  height: 4.2rem;
  padding: 0.48rem 0.32rem;
  box-sizing: border-box;
}

.ipart06 .item .txt_box {
  height: 100%;
  width: 100%;
  color: #fff;
}

.ipart06 .item .txt_box .num {
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 600;
}

.ipart06 .item .txt_box .tit {
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 1.2;
}

.mb-16 {
  margin-bottom: 0.16rem;
}

.ipart07 {
  margin-top: 0.8rem;
}

.ipart07 img{
  width: 66%;
}

.ipart07 .content {
  padding: 0.40rem 0.48rem;
  box-sizing: border-box;
}

.ipart08 {
  margin: 0.44rem 0;
}

.ipart08 .con {
  display: flex;
  /* height: 2.92rem; */
  gap: 0.24rem;
}

.ipart08 .con .item {
  flex: 1;
  background: #ffffff;
  padding: 0.32rem;
  box-sizing: border-box;
}

.ipart08 .content {
  display: flex;
  gap: 0.24rem;
}

.ipart08 .content .item {
  flex: 1;
  background: #ffffff;
  padding: 0.32rem;
  box-sizing: border-box;
}

.ipart08 .con .item img {
  width: 0.72rem;
  height: 0.72rem;
}

.ipart08 .title,
.ipart09 .title,
.ipart10 .title {
  font-size: 0.48rem;
  line-height: 1.5;
  margin-bottom: 0.32rem;
}

.ipart08 .con .item .tit {
  margin: 0.16rem 0;
  font-size: 0.32rem;
  font-weight: 600;
  line-height: 1.5;
}

.solution01 .content img{
  width: 60%;
}

.ipart09 {
  margin-top: 0.72rem;
}

.ipart09 .wrap img {
  height: 6rem;
  object-fit: cover;
}

.ipart09 .content .left{
  width: 40%;
}

.ipart09 .content .num-box {
  display: flex;
  align-items: flex-end;
  gap: 0.48rem;
  color: #ffffff;
}

.ipart09 .content .num-box .item{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.ipart09 .content .num-box .item .num{
  font-size: 0.5rem;
  font-weight: 600;
}

.ipart09 .content .num-box .item .text{
  margin-top: 0.1rem;
}

.ipart10 {
  margin: 0.72rem 0;
}

.ipart10 .content .item img {
  height: 6rem;
}

.ipart10 .content .item .text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding-bottom: 0.48rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 1.5;
}

.ipart11 {
  margin-bottom: 0.72rem;
}

/*
 * @Author: error: error: git config user.name & please set dead value or install git && error: git config user.email & please set dead value or install git & please set dead value or install git
 * @Date: 2024-07-16 11:15:36
 * @LastEditors: error: error: git config user.name & please set dead value or install git && error: git config user.email & please set dead value or install git & please set dead value or install git
 * @LastEditTime: 2024-07-16 14:14:04
 * @FilePath: /Users/selina/Personal/work/project/ai-chat/deuventi/Deuventi 2/css/content.css
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 */
/* solution04 */
.solution04 .title {
  margin-bottom: 0.32rem;
}
.solution04 .advantages-container {
  display: flex;
  justify-content: space-between;
}

.solution04 .advantages-tabs {
  width: 50%;
  background: #ffffff;
  padding: 0 0.48rem;
  box-sizing: border-box;
}

.solution04 .advantage-item {
  border-bottom: 1px solid #E3E3E3;
  padding: 0.24rem 0;
  cursor: pointer;
}

.solution04 .advantage-item:last-child {
  border-bottom: 0;
}

.solution04 .advantage-item .advantage-title {
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 23.44px;
  color: #86909C;
  position: relative;
  /* padding-left: 2rem; */
}

/* .solution04 .advantage-item .advantage-title::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #D8D8D8;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
} */

.solution04 .advantage-item.active .advantage-title {
  color: #1D2129;
}


.solution04 .advantage-item .advantage-description {
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 26px;
  color: #4E5969;
  /* padding-left: 2rem; */
  margin-top: 0.1rem;
  display: none;
}

/* .solution04 .advantage-item.active .advantage-description {
  display: block;
} */

.solution04 .advantages-image {
  width: 50%;
}

.solution04 .advantages-image img {
  height: 100%;
  object-fit: cover;
}

.ipart13 .num{
  color: #19A15F;
  font-size: 0.4rem;
  font-weight: 600; 
}

.social03 .content .item {
  flex: 1;
  height: 6.14rem;
  color: #ffffff;
  padding: 2.24rem 0.64rem 0;;
  box-sizing: border-box;
}

.social03 .content .item .title{
  font-size: 0.32rem;
  margin-bottom: 0.32rem;
  font-weight: 500;
}

.social03 .content .item.gold1{
  background: url('../picture/svg/gold1.png') no-repeat;
  background-size: cover;
}

.social03 .content .item.gold2{
  background: url('../picture/svg/gold2.png') no-repeat;
  background-size: cover;
}

.social03 .content .item .item{
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.about_us01 .content .video_box {
  width: 66%;
  /* height: 5.72rem; */
}

.about_us01 .content .right {
  font-size: 0.18rem;
  line-height: 1.5;
}

.about_us01 .content .video_box .video-img {
  height: 100%;
  object-fit: cover;
}

.about_us01 .num-box .item {
  flex: 1;
  height: 2.12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about_us01 .num-box .item em{
  font-size: 0.4rem;
}

.about08 {
  margin-top: 0.32rem;
}

.about08 .usual_tit {
  font-size: 0.3rem;
  line-height: 1.5;
}

.about08 .content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.about08 .content .item{
  flex: 1;
  background: #ffffff;
}

.about08 .content .item .index_box{
  padding: 0.24rem 0.32rem;
}

.about08 .content .item .index_box .tit24 {
  font-size: 0.24rem;
  font-weight: 500;
  margin-bottom: 0.12rem;
}

.invest03 {
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
}

.invest03 .content{
  display: flex;
  gap: 0.28rem;
}

.invest03 .content .item {
  flex: 1;
  background: #fff;
}

.invest03 .content .item .text_box {
  padding: 0.24rem 0.32rem;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #4E5969;
}

.invest03 .content .item .title {
  margin-bottom: 0.12rem;
  font-size: 0.24rem;
  font-weight: 500;
  color: #1D2129;
}

.sus01 {
  margin-top: 0.6rem;
}

.sus01 .lists {
  margin-top: 0.32rem;
}

.sus01 .lists .left{
  width: 50%;
  padding: 0 0.32rem;
  box-sizing: border-box;
  background: #ffffff;
}

.sus01 .lists .left .item{
  color: #4E5969;
  border-bottom: 1px solid #E5E6EB;
  padding: 24px 0;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}

.sus01 .lists .left .item .indx_box{
  display: none;
}

.sus01 .lists .left .item.active .title{
  color: #1D2129;
  margin-bottom: 10px;
}

.sus01 .lists .right {
  flex: 1;
}

.sus01 .lists .right img {
  height: 100%;
  object-fit: cover;
}

/* Organisation grid */
.org01 .title,
.org02 .title {
  font-size: 0.48rem;
  /* margin-bottom: 0.16rem; */
  line-height: 1.5;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.24rem;
}

.org-card {
  background: #ffffff;
  /* border: 1px solid #E5E6EB;
  border-radius: 8px; */
  padding: 0.32rem 0.36rem;
  box-sizing: border-box;
}

.org-card.org-span-12 { grid-column: span 12; }
.org-card.org-span-6 { grid-column: span 6; }
.org-card.org-span-4 { grid-column: span 4; }

.org-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  margin-bottom: 0.12rem;
}

.org-card__header img {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  display: inline-block;
}

.org-card__title {
  font-size: 0.24rem;
  line-height: 1.4;
  font-weight: 500;
}

.org-card__body {
  color: #4E5969;
  font-size: 0.16rem;
  line-height: 1.7;
}

.org02 {
  background:url('../picture/svg/org-bg.png');
  background-repeat: no-repeat; 
  background-size: cover;
  margin-top: 0.6rem;
  padding: 0.32rem 0 0.8rem;
}

.org02 .content {
  padding: 0.2rem 0.64rem;
  box-sizing: border-box;
  margin-top: 0.24rem;
  background: #ffffff;
}

.org02 .content .title-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.org02 .content .title-box .title {
  font-size: 0.24rem;
}


.org02 .content .item {
  padding: 0.24rem 0;
  border-bottom: 1px solid #E5E6EB;
  cursor: pointer;
}

.org02 .content .item:last-child {
  border-bottom: none;
}

.org02 .content .item .indx_box {
  color: #4E5969;
  display: none;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}

.news_detail01 .title {
  font-size: 0.32rem;
  line-height: 1.5;
  color: #1D2129;
  margin-bottom: 8px;
}

.news_detail01 .time {
  font-size: 0.14rem;
  line-height: 1.5;
  color: #4E5969;
  margin-bottom: 8px;
}
.news_detail01 .content {
  background: #ffffff;
  padding: 0.48rem 0.64rem;
  margin-bottom: 0.8rem;
}

.news_detail01 .content .text {
  color: #4E5969;
  font-size: 0.16rem;
  line-height: 1.5;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #C9CDD4;
}

.news_detail01 .btns {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.24rem;
}

.news_detail01 .btns .prev {
  width: calc(50% - 0.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F3F5;
  padding: 0.16rem 0.24rem;
}

.news_detail01 .btns .next{
  width: calc(50% - 0.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F3F5;
  padding: 0.16rem 0.24rem;
}

.news_detail01 .btns .bb {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  color: #4E5969;
  font-size: 0.14rem;
}

.news_detail01 .btns .el {
  overflow: hidden;
  white-space: wrap;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.news_detail01 .crumbs {
  margin-bottom: 0.24rem;
}

.news_detail01 .crumbs .index_box {
  font-size: 0.12rem;
  line-height: 1.5;
  color: #1D2129;
}

.news_detail01 .crumbs .index_box .crumbs_link {
  color: #86909C;
}

@media (max-width: 1024px) {
  .org-card.org-span-6 { grid-column: span 12; }
  .org-card.org-span-4 { grid-column: span 12; }
}

@media (max-width: 768px) {
  .ipart02 .content .item {
    width: 100%;
    flex: auto;
  }

  .ipart07 {
    margin-top: 0.2rem;
  }

  .ipart07 img{
    width: 100%;
  }

  .solution01 .content img{
    width: 100%;
  }

  .ipart08 .content .item {
    width: 100%;
    flex: auto;
  }

  .ipart08 .con .item {
    width: 100%;
    flex: auto;
  }

  .ipart09 .content{ 
    padding: 0.2rem;
    flex-wrap: wrap;
  }

  .ipart09 .content .second{ 
    display: none;
  }

  .ipart09 .content .left{
    width: 100%;
  }

  .ipart09 .content .num-box{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .social03 .content .item {
    width: 100%;
    flex: auto;
    height: 6.14rem;
  }

  .about08 .content .item{
    width: 100%;
    flex: auto;
  }

  .about_us01 .content {
    flex-direction: column;
  }

  .about_us01 .content .video_box {
    width: 100%;
    height: auto;
  }

  .about_us01 .content .video_box .video-img {
    height: 100%;
  }

  .invest03 .content {
    flex-direction: column;
  }
  .sus01 .lists {
    flex-direction: column;
  }
  .sus01 .lists .left{
    width: 100%;
  }
  
  .sus01 .lists .right{
    flex: auto;
    width: 100%;
  }

  .news_detail01 .btns {
    flex-direction: column;
  }
}