html {
  width: 100%;
  overflow-x: hidden;
}
.blog-page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.blog-page * {
  box-sizing: border-box;
}
.blog-page .container-max {
  padding-left: 90px;
  padding-right: 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1400px) {
  .blog-page .container-max {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .blog-page .container-max {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 992px) {
  .blog-page .container-max {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 750px) {
  .blog-page .container-max {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.blog-page .container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1500px;
}
.blog-page .bg {
  position: absolute;
  z-index: -1;
}
.blog-page .bg.bg-1 {
  top: 31%;
  left: 0;
  max-width: 615px;
}
.blog-page .bg.bg-2 {
  top: 65%;
  right: 0;
  max-width: 438px;
}
.blog-page .bg img {
  width: 100%;
}
.blog-page .banner .banner-box {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .blog-page .banner .banner-box::before {
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    width: 100%;
    height: 70%;
  }
}
.blog-page .banner .banner-box .banner-bg {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
.blog-page .banner .banner-box .banner-bg img {
  width: 100%;
}
.blog-page .banner .banner-box .banner-bg .person-box {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.blog-page .banner .banner-box .text-box {
  position: absolute;
  top: 35%;
  left: 0;
  color: #fff;
  max-width: 31.71vw;
  z-index: 3;
  transition: top 0.35s ease-in-out;
}
@media screen and (max-width: 1400px) {
  .blog-page .banner .banner-box .text-box {
    top: 30%;
    max-width: 42.1vw;
  }
}
@media screen and (max-width: 1200px) {
  .blog-page .banner .banner-box .text-box {
    padding-top: 110px;
    padding-bottom: 6px;
    position: static;
    width: 66%;
    max-width: none;
  }
}
@media screen and (max-width: 992px) {
  .blog-page .banner .banner-box .text-box {
    width: 80%;
  }
}
@media screen and (max-width: 750px) {
  .blog-page .banner .banner-box .text-box {
    width: 100%;
  }
}
.blog-page .banner .banner-box .text-box h1 {
  font-size: 85px;
  line-height: 1.22;
  font-weight: bold;
}
@media (max-width: 750px) {
  .blog-page .banner .banner-box .text-box h1 {
    font-size: 60px;
  }
}
.blog-page .banner .banner-box .text-box p {
  margin-bottom: 22px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.66;
}
@media screen and (max-width: 750px) {
  .blog-page .banner .banner-box .text-box p {
    margin-bottom: 12px;
  }
}
.blog-page .blog-tab {
  margin-top: 58px;
}
.blog-page .blog-tab .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-page .blog-tab .tab {
  margin-right: -20px;
  width: 76.5%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .blog-page .blog-tab .tab {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .blog-page .blog-tab .tab {
    margin-right: 0;
  }
}
.blog-page .blog-tab .tab .tab-item {
  margin-bottom: 10px;
  margin-right: 20px;
  border-radius: 35px;
  border: 1px solid #FFC807;
  padding: 24px;
  width: calc(33.33% - 20px);
  text-align: center;
  font-size: 16px;
  line-height: 1.1875;
  color: #333333;
  background-color: transparent;
  font-weight: bold;
  transition: background-color 0.35s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .blog-page .blog-tab .tab .tab-item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 750px) {
  .blog-page .blog-tab .tab .tab-item {
    margin-right: 0;
    width: 100%;
  }
}
.blog-page .blog-tab .tab .tab-item.active,
.blog-page .blog-tab .tab .tab-item:hover {
  background-color: #FFC807;
}
.blog-page .blog-tab .tab-pane {
  position: relative;
}
.blog-page .blog-tab .tab-pane .tab-content {
  margin-top: 66px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.blog-page .blog-tab .tab-pane .tab-content::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.blog-page .blog-tab .tab-pane .tab-content.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}
.blog-page .blog-tab .tab-pane .tab-content.active::after {
  content: none;
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list {
  margin-right: -38px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .blog-page .blog-tab .tab-pane .tab-content .blog-list {
    margin-right: 0;
  }
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item {
  margin-right: 38px;
  margin-bottom: 38px;
  border-radius: 42px;
  width: calc(33.33% - 38px);
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item {
    width: calc(50% - 38px);
  }
}
@media screen and (max-width: 750px) {
  .blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item {
    margin-right: 0;
    width: 100%;
  }
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item:hover .pic img {
  transform: scale(1.1);
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .pic {
  font-size: 0;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .pic .img {
  width: 100%;
  transition: transform 0.9s ease-in-out;
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box {
  padding: 36px 34px 162px;
  position: relative;
  flex-grow: 1;
}
@media screen and (max-width: 1200px) {
  .blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box {
    padding: 26px 24px 142px;
  }
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box h5 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #1B1C26;
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box .sub-tit {
  margin-bottom: 30px;
  color: #FFC807;
}
@media screen and (max-width: 1200px) {
  .blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box .sub-tit {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  .blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box .sub-tit {
    margin-bottom: 15px;
  }
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box .desc {
  color: #1B1C26;
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box .btn {
  position: absolute;
  left: 34px;
  bottom: 50px;
  border-radius: 30px;
  border: 1px solid #FFC807;
  padding: 18px 54px;
  background-color: #FFC807;
  color: #333333;
  font-size: 16px;
  line-height: 1.1875;
  font-weight: bold;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 1200px) {
  .blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box .btn {
    left: 24px;
    bottom: 30px;
    padding: 14px 36px;
  }
}
.blog-page .blog-tab .tab-pane .tab-content .blog-list .blog-item .text-box .btn:hover {
  color: #c1212f;
  border-color: #c1212f;
  background-color: transparent;
}
.blog-page .c-footer {
  margin-top: 0;
}
