.block {
  background: #F5F8FD;
  margin-top: 16px;
  padding: 32px 0;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 40px 0;
  min-width: 1200px;

  .describe {
    display: flex;
    flex-direction: column;
  }
  
  .title-sub {
    font-size: 24px;
    font-weight: bold;
  }
  
  .title-sub2 {
    font-size: 20px;
    margin-top: 20px;
  }
  
  .desc-list {
    color: #3BB1F2;
  }
  
  .desc-list2 {
    color: #393939;
    font-size: 15px;
  }
}
@media screen and (max-width: 800px) {
	.row {
		flex-direction: column;
		 margin: 0 0;
	}
	.title-sub2 {
		margin-top: 0;
	}
}

.column {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  .title {
    display: flex;
    flex-direction: row;
    margin: 20px auto;
    justify-content: space-between;
    width: 100%;
    border-bottom: silver 1px solid;
    font-size: 24px;
    color: #32AEF2;
    
    .title-sub {
      cursor: pointer;
      margin-bottom: 10px;
    }
  }
  .content {
    display: flex;
    flex-direction: row;
    margin: 30px 20px;
    
    .img {
      width: 550px;
      height: 450px;
    }
  }
  .desc {
    display: flex;
    flex-direction: column;
    .desc-title {
      font-size: 22px;
      font-weight: bold;
      margin-top: 20px;
    }
    .desc-title2 {
       font-size: 20px;
       font-weight: bold;
       margin: 30px 0 10px 20px;
    }
    .desc-title3 {
      margin: 0 20px;
      font-size: 18px;
    }
    .desc-title4 {
      font-size: 20px;
      font-weight: bold;
      color: #3AB1F2;
      margin: 30px 0 10px 20px;
    }
    .desc-title5 {
       margin: 0 0 0 20px;
       font-weight: bold;
    }
    .desc-title6 {
      font-size: 18px;
    }
  }
}
@media screen and (max-width: 800px) {
	.column {
		 .content {
			 margin: 0;
			 flex-direction: column;
			 .img {
				 width: 100%;
				 height: auto;
			}
		 }
	}
}

.row3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 30px 0 50px 0;
  gap: 40px;
  
  .item {
    display: flex;
    flex-direction: column;
    width: 34%;
    
    .title {
      display: flex;
      flex-direction: row;
      .img {
        height: 28px;
        width: 28px;
      }
      .text {
        margin-left: 12px;
        font-size: 24px;
        font-weight: bold;
      }
    }
    .desc {
      font-size: 18px;
      word-wrap: break-word;
      margin-top: 16px;
    }
  }
  
}
@media screen and (max-width: 800px) {
  .row3 {
    flex-direction: column;

	.item {
		width: 100%;
	}
  }
}