.banner {
  width: 100%;
  position: relative;
}
.banner img {
  width: 100%;
  height: 100%;
}
.banner .content {
  position: absolute;
  top: 60%;
  left: 10%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.banner .content .content-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner .content .content-top .title {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 48px;
  line-height: 66px;
  margin-bottom: 32px;
}
.banner .content .content-top .desc {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 8px;
}
.banner .content .content-bottom {
  color: #000000;
  margin-top: 102px;
}
.banner .content .content-bottom a {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
.aboutNav {
  width: 100%;
}
.aboutNav .inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  padding: 23px 0;
  gap: 66px;
}
.aboutNav .inner .aboutNav-item {
  position: relative;
}
.aboutNav .inner .aboutNav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 26px;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  background: #8E8E8E;
}
.aboutNav .inner .aboutNav-item a {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  transition: 0.5s;
  transition: background-size 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline;
  text-decoration: none;
  padding-bottom: 4px;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, #013fa6 0, #013fa6 100.2%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 90%;
  border-radius: 0;
}
.aboutNav .inner .aboutNav-item:hover a {
  color: #013FA6;
  background-size: 100% 2px;
}
.aboutNav .inner .aboutNav-item-active a {
  color: #013FA6;
  background-size: 100% 2px;
}
.page {
  width: 100%;
  background: #f3f7fc;
  padding: 50px 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 62px;
}
.page .pages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 62px;
}
.page .pages .num {
  color: #000000;
  font-family: "DIN Alternate";
  font-weight: 700;
  font-size: 35px;
  line-height: 41px;
}
.page .pages .num-active {
  color: #cc141c;
  font-family: "DIN Alternate";
  font-weight: 700;
  font-size: 35px;
  line-height: 41px;
  border-bottom: 3px solid #cc141c;
}
.intro {
  width: 100%;
  background: #f3f7fc;
  position: relative;
}
.intro .intro-back1 {
  position: absolute;
  right: 50%;
  top: 70%;
}
.intro .intro-back2 {
  position: absolute;
  right: 45%;
  bottom: 5%;
}
.intro .inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 63px 0 52px;
}
.intro .inner .intro-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 39px;
}
.intro .inner .intro-top .title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro .inner .intro-top .title p {
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0.4px;
}
.intro .inner .intro-top .desc {
  width: 20%;
}
.intro .inner .intro-top .desc p {
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3px;
}
.intro .inner .intro-middle {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 57px;
}
.intro .inner .intro-middle .item {
  height: auto !important;
  width: calc((100% - 120px) / 3);
  padding: 26px 33px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transform: scale(1);
  transition: 0.5s;
}
.intro .inner .intro-middle .item .img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #dd0000;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro .inner .intro-middle .item .img svg {
  display: block;
  object-fit: scale-down;
  transform: rotateY(0deg);
  transition: 0.5s;
}
.intro .inner .intro-middle .item .title {
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1px;
  margin-bottom: 11px;
}
.intro .inner .intro-middle .item .desc {
  width: 60%;
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3px;
}
.intro .inner .intro-middle .item:nth-child(2) .img {
  background: #013fa6;
}
.intro .inner .intro-middle .item:hover {
  transform: scale(1.05);
}
.intro .inner .intro-middle .item:hover svg {
  transform: rotateY(360deg);
}
.intro .inner .intro-bottom {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.intro .inner .intro-bottom .intro-bottom-left {
  width: 42%;
  border-radius: 12px;
  background: #939393;
  overflow: hidden;
}
.intro .inner .intro-bottom .intro-bottom-left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}
.intro .inner .intro-bottom .intro-bottom-left:hover img {
  transform: scale(1.05);
}
.intro .inner .intro-bottom .intro-bottom-right {
  width: 58%;
  padding-left: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.intro .inner .intro-bottom .intro-bottom-right .text {
  color: #050505;
  font-family: "PingFang SC";
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
  margin-bottom: 74px;
}
.intro .inner .intro-bottom .intro-bottom-right .bottom {
  width: 70%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.intro .inner .intro-bottom .intro-bottom-right .bottom .img {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro .inner .intro-bottom .intro-bottom-right .bottom .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}
.intro .inner .intro-bottom .intro-bottom-right .bottom .img:hover img {
  transform: scale(1.05);
}
.slogan {
  width: 100%;
  background-image: url(../images/about/slogan-back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.slogan .inner {
  width: 70%;
  margin: 0 auto;
  max-width: 1440px;
  border-radius: 12px;
  background: #ffffff30;
  backdrop-filter: blur(5.6px);
}
.slogan .inner p {
  padding: 62px 26px;
  color: #ffffff;
  font-family: "PingFang SC";
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
}
.history {
  width: 100%;
  position: relative;
}
.history .history-back1 {
  position: absolute;
  left: 20%;
  top: 60%;
  transform-origin: center;
  animation: expand 13s infinite;
  pointer-events: none;
}
.history .history-back2 {
  position: absolute;
  left: 40%;
  top: 15%;
  transform-origin: center;
  animation: expand 10s infinite;
  pointer-events: none;
}
.history .history-back3 {
  position: absolute;
  right: 40%;
  top: 20%;
  transform-origin: center;
  animation: expand 8s infinite;
  pointer-events: none;
}
.history .history-back4 {
  position: absolute;
  right: 35%;
  top: 70%;
  transform-origin: center;
  animation: expand 15s infinite;
  pointer-events: none;
}
.history .inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 76px 0 24px;
}
.history .inner .history-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 43px;
}
.history .inner .history-top .title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.history .inner .history-top .title p {
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0.4px;
}
.history .inner .history-top .desc {
  width: 20%;
}
.history .inner .history-top .desc p {
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3px;
}
.history .inner .swiper {
  width: 100%;
  cursor: pointer;
}
.history .inner .swiper .swiper-wrapper {
  width: 100%;
  display: flex !important;
  align-items: stretch;
}
.history .inner .swiper .swiper-wrapper .swiper-slide {
  height: auto !important;
  flex-shrink: 0;
  padding: 116px 0 211.5px;
  position: relative;
}
.history .inner .swiper .swiper-wrapper .swiper-slide .num {
  position: absolute;
  top: 14%;
  left: 7%;
  width: 55px;
  height: 55px;
  background: #dd0000;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 37px;
  line-height: 29.3px;
  letter-spacing: -0.4px;
  z-index: 1;
}
.history .inner .swiper .swiper-wrapper .swiper-slide .item {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 24px;
  background: #013fa6f2;
  overflow: hidden;
  padding: 50px 31px;
  position: relative;
}
.history .inner .swiper .swiper-wrapper .swiper-slide .item svg {
  position: absolute;
  top: 0;
  right: 0;
}
.history .inner .swiper .swiper-wrapper .swiper-slide .item .title {
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.4px;
}
.history .inner .swiper .swiper-wrapper .swiper-slide .item .desc {
  color: #ffffffe6;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 29.3px;
  letter-spacing: -0.4px;
}
.history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+2) .num {
  top: 38%;
}
.history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+2) .item {
  position: relative;
  top: 145px;
}
.history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+3) .num {
  top: 5%;
}
.history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+3) .item {
  position: relative;
  bottom: 58px;
}
.history .inner .history-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.history .inner .history-bottom p {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}
.history .inner .history-bottom img {
  transform: translate3d(0, 0, 0);
  animation: horizontalMove 2s linear infinite;
}
@keyframes horizontalMove {
  0% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(-3px);
  }
}
@keyframes expand {
  0% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
}
.society {
  width: 100%;
  background: #f3f7fc;
}
.society .inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 76px 0 138px;
}
.society .inner .society-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 43px;
}
.society .inner .society-top .title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.society .inner .society-top .title p {
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0.4px;
}
.society .inner .society-top .desc {
  width: 20%;
}
.society .inner .society-top .desc p {
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3px;
}
.society .inner .swiper {
  width: 100%;
}
.society .inner .swiper .swiper-pagination {
  width: 100%;
  display: flex;
  gap: 16px;
}
.society .inner .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 144px;
  height: 56px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 4.2px #00000040;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  opacity: 1;
  margin-top: 2px;
  margin-left: 2px;
  cursor: pointer;
  transition: 0.5s;
}
.society .inner .swiper .swiper-pagination .swiper-pagination-bullet svg {
  stroke: #364153;
  transition: 0.5s;
}
.society .inner .swiper .swiper-pagination .swiper-pagination-bullet p {
  color: #364153;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  transition: 0.5s;
}
.society .inner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #dd0000;
}
.society .inner .swiper .swiper-pagination .swiper-pagination-bullet-active svg {
  stroke: white;
}
.society .inner .swiper .swiper-pagination .swiper-pagination-bullet-active p {
  color: white;
}
.society .inner .swiper .swiper-wrapper {
  width: 100%;
  display: flex !important;
  align-items: stretch;
}
.society .inner .swiper .swiper-wrapper .swiper-slide {
  margin-top: 126px;
  height: auto !important;
  flex-shrink: 0;
  width: 100%;
  border-radius: 24px;
  border: 2px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 27px 50px 33px 50px;
  display: flex;
  justify-content: space-between;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .content {
  display: flex;
  flex-direction: column;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .content .title {
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .content .line {
  width: 187px;
  height: 2px;
  border-radius: 1px;
  background: #013fa6;
  margin-bottom: 21.5px;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .content .desc {
  color: #364153;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .btn {
  display: flex;
  justify-content: flex-end;
  gap: 23px;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .btn .prev {
  cursor: pointer;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .btn .next {
  cursor: pointer;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-right {
  width: 40%;
}
.society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-right img {
  width: 100%;
}
@media only screen and (max-width: 1100px) {
  .banner .content .content-top .title,
  .intro .inner .intro-top .title p,
  .society .inner .society-top .title p,
  .history .inner .history-top .title p {
    font-size: 30px;
  }
  .intro .inner .intro-top .title svg,
  .history .inner .history-top .title svg,
  .society .inner .society-top .title svg,
  .contacti .contacti-left svg {
    height: 35px;
  }
  .intro .inner .intro-top .desc,
  .history .inner .history-top .desc,
  .society .inner .society-top .desc {
    width: 35%;
  }
  .intro .inner .intro-middle .item .desc {
    width: 100%;
  }
  .intro .inner .intro-middle .item {
    width: 30%;
  }
}
@media only screen and (max-width: 1025px) {
  .banner {
    margin-top: 90px;
  }
  .banner .content .content-top .desc {
    font-size: 16px;
  }
  .banner .content .content-bottom {
    margin-top: 50px;
  }
  .banner .content {
    top: 50%;
  }
}
@media only screen and (max-width: 900px) {
  .history .history-back1 {
    display: none;
  }
  .history .history-back2 {
    left: 60%;
  }
  .aboutNav .inner,
  .intro .inner,
  .slogan .inner,
  .history .inner,
  .society .inner {
    width: 90%;
    margin: 0 auto;
  }
  .banner .content .content-top .title,
  .intro .inner .intro-top .title p,
  .society .inner .society-top .title p,
  .history .inner .history-top .title p {
    font-size: 25px;
  }
  .intro .inner .intro-top .title svg,
  .history .inner .history-top .title svg,
  .society .inner .society-top .title svg,
  .contacti .contacti-left svg {
    height: 30px;
  }
  .intro .inner .intro-middle .item {
    padding: 20px 20px;
  }
  .intro .inner .intro-middle .item .img {
    margin-bottom: 5px;
  }
  .intro .inner .intro-middle .item .title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .intro .inner .intro-middle .item .desc {
    font-size: 14px;
  }
  .society .inner .swiper .swiper-pagination {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide {
    margin-top: 150px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left {
    width: 100%;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-right {
    width: 60%;
    margin: 0 auto;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .content .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 821px) {
  .banner {
    margin-top: 50px;
  }
  .intro .inner .intro-bottom {
    flex-direction: column;
    gap: 20px;
  }
  .intro .inner .intro-bottom .intro-bottom-left {
    width: 100%;
  }
  .intro .inner .intro-bottom .intro-bottom-right {
    width: 100%;
    padding-left: 0px;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-right {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .banner .content {
    top: 40%;
  }
  .banner .content .content-bottom {
    display: none;
  }
  .aboutNav .inner {
    padding: 10px 0;
    gap: 30px;
  }
  .aboutNav .inner .aboutNav-item a {
    font-size: 16px;
  }
  .aboutNav .inner .aboutNav-item:not(:last-child)::after {
    height: 20px;
    right: -16px;
    top: 55%;
  }
  .banner .content .content-top .title,
  .intro .inner .intro-top .title p,
  .society .inner .society-top .title p,
  .history .inner .history-top .title p {
    font-size: 25px;
  }
  .banner .content .content-top .title {
    line-height: 30px;
  }
  .intro .inner .intro-top .title svg,
  .history .inner .history-top .title svg,
  .society .inner .society-top .title svg,
  .contacti .contacti-left svg {
    height: 25px;
  }
  .intro .inner .intro-top,
  .history .inner .history-top,
  .society .inner .society-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide .item {
    gap: 10px;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide .item .title {
    font-size: 20px;
  }
  .history .inner .history-top {
    margin-bottom: 20px;
  }
  .intro .inner .intro-top .desc,
  .history .inner .history-top .desc,
  .society .inner .society-top .desc {
    width: 100%;
  }
  .intro .inner {
    padding: 30px 0 30px;
  }
  .intro .inner .intro-middle {
    margin-bottom: 30px;
  }
  .slogan .inner p {
    padding: 30px 20px;
    font-size: 16px;
  }
  .society .inner {
    padding: 30px 0 30px;
  }
  .society .inner .society-top {
    margin-bottom: 20px;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-left .content .title {
    font-size: 20px;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide .swiper-slide-right {
    width: 100%;
    margin: 0 auto;
  }
  .society .inner .swiper .swiper-wrapper .swiper-slide {
    padding: 30px;
  }
}
@media only screen and (max-width: 641px) {
  .banner .content .content-top .title,
  .intro .inner .intro-top .title p,
  .society .inner .society-top .title p,
  .history .inner .history-top .title p {
    font-size: 20px;
  }
  .banner .content .content-top .desc {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .intro .inner .intro-middle {
    flex-direction: column;
    gap: 20px;
  }
  .intro .inner .intro-middle .item {
    width: 100%;
  }
  .intro .inner .intro-middle .item .title {
    font-size: 18px;
  }
  .intro .inner .intro-bottom .intro-bottom-right .text {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .intro .inner .intro-bottom .intro-bottom-right .bottom {
    width: 60%;
    margin: 0 auto;
    flex-direction: column;
    gap: 0;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide {
    padding: 25px 0;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide .item {
    width: 100%;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide .num {
    top: 0%;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+2) .num {
    top: 0%;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+2) .item {
    position: relative;
    top: 0;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+3) .num {
    top: 0%;
  }
  .history .inner .swiper .swiper-wrapper .swiper-slide:nth-child(3n+3) .item {
    position: relative;
    bottom: 0px;
  }
}
@media only screen and (max-width: 521px) {
  .banner .content .content-top .desc {
    display: none;
  }
  .aboutNav .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 10px;
  }
  .aboutNav .inner .aboutNav-item:not(:last-child)::after {
    display: none;
  }
  .intro .inner .intro-bottom .intro-bottom-right .bottom {
    width: 80%;
  }
}
@media only screen and (max-width: 431px) {
  .intro .inner .intro-bottom .intro-bottom-right .bottom {
    width: 100%;
  }
}
