.banner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 568px;
  margin-top: 116px;
  background-image: url("https://res.daetool.com/wm-static-resource/wm/750_wm/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Microsoft YaHei", sans-serif;
}
.banner-box .banner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding-left: 0;
  box-sizing: border-box;
}
@media (min-width: 1550px) {
  .banner-box .banner-container {
    max-width: 1200px;
  }
}
.banner-box .banner-title {
  display: block;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.25;
  color: #2C3E50;
  text-align: left;
  margin-bottom: 30px;
}
.banner-box .feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.banner-box .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-box .feature-list .feature-item .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.banner-box .feature-list .feature-item .icon-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.banner-box .feature-list .feature-item .feature-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #4B5563;
}
.banner-box .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-width: 200px;
  height: 62px;
  padding: 15px 31px;
  background-color: #4299B4;
  border-radius: 8px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-bottom: 40px;
}
.banner-box .download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.banner-box .download-btn .btn-text {
  font-size: 23px;
  font-weight: 400;
  color: #FFFFFF;
}
.banner-box .download-btn .btn-icon {
  width: 32px;
  height: 32px;
}
.banner-box .user-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}
.banner-box .user-stats .avatar-group {
  display: flex;
  align-items: center;
}
.banner-box .user-stats .avatar-group .avatar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -8px;
  background-color: #fff;
  overflow: hidden;
  box-sizing: content-box;
}
.banner-box .user-stats .avatar-group .avatar-wrapper:first-child {
  margin-left: 0;
  z-index: 1;
}
.banner-box .user-stats .avatar-group .avatar-wrapper:nth-child(2) {
  z-index: 2;
}
.banner-box .user-stats .avatar-group .avatar-wrapper:nth-child(3) {
  z-index: 3;
}
.banner-box .user-stats .avatar-group .avatar-wrapper:nth-child(4) {
  z-index: 4;
}
.banner-box .user-stats .avatar-group .avatar-wrapper.more {
  z-index: 5;
  background-color: #F3F4F6;
}
.banner-box .user-stats .avatar-group .avatar-wrapper.more span {
  font-size: 12px;
  color: #9CA3AF;
}
.banner-box .user-stats .avatar-group .avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-box .user-stats .stats-text {
  margin: 0;
  color: #6B7280;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.banner-box .user-stats .stats-text span {
  color: #E70E20;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.intro-box {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  font-family: "Microsoft YaHei", sans-serif;
}
.intro-box .intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 0 16px;
}
@media (min-width: 1550px) {
  .intro-box .intro-container {
    max-width: 1536px;
  }
}
.intro-box .intro-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  text-align: center;
}
.intro-box .intro-header .intro-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #1E1E1E;
  margin: 0;
}
.intro-box .intro-header .intro-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #606266;
  margin: 0;
}
.intro-box .intro-header .intro-subtitle > span {
  color: #4299B4;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 100% */
}
.intro-box .intro-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
  width: 100%;
}
.intro-box .intro-grid .intro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 300px;
  max-width: 459px;
  height: 234px;
  padding: 30px;
  background-color: #F5F7FA;
  border-radius: 11px;
  box-shadow: 0px 9.57px 28.72px -4.79px rgba(47, 67, 138, 0.1);
  box-sizing: border-box;
}
.intro-box .intro-grid .intro-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
}
.intro-box .intro-grid .intro-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
}
.intro-box .intro-grid .intro-card .card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  color: #1E1E1E;
  margin-bottom: 16px;
}
.intro-box .intro-grid .intro-card .card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  color: #606266;
  text-align: center;
  margin: 0;
}
.intro-box .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-width: 200px;
  height: 62px;
  padding: 15px 31px;
  background-color: #4299B4;
  border-radius: 8px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.intro-box .download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.intro-box .download-btn .btn-text {
  font-size: 23px;
  font-weight: 400;
  color: #FFFFFF;
}
.intro-box .download-btn .btn-icon {
  width: 32px;
  height: 32px;
}

.step-box {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 0;
  background-color: #F9FAFC;
  font-family: "Microsoft YaHei", sans-serif;
  box-sizing: border-box;
}
.step-box .step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  box-sizing: border-box;
}
@media (min-width: 1550px) {
  .step-box .step-container {
    max-width: 1536px;
  }
}
.step-box .step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
  text-align: center;
}
.step-box .step-header .step-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #1E1E1E;
  margin: 0;
}
.step-box .step-header .step-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #606266;
  margin: 0;
}
.step-box .step-header .step-subtitle > span {
  color: #4299B4;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 100% */
}
.step-box .step-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.step-box .step-process .process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1200px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1300px) {
  .step-box .step-process .process-flow {
    width: 86%;
  }
  .step-box .step-process .process-flow .flow-line {
    width: 256px !important;
    left: 70% !important;
  }
}
.step-box .step-process .process-flow .flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.step-box .step-process .process-flow .flow-item:last-child {
  flex: 0 0 auto;
  min-width: 100px;
}
.step-box .step-process .process-flow .flow-item:last-child .flow-line {
  display: none;
}
.step-box .step-process .process-flow .flow-item .flow-icon {
  width: 51px;
  height: 51px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.step-box .step-process .process-flow .flow-item .flow-icon img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.step-box .step-process .process-flow .flow-item .flow-icon img.active {
  display: block;
}
.step-box .step-process .process-flow .flow-item .flow-text {
  font-size: 26px;
  font-weight: 400;
  color: #B4B4B4;
  transition: color 0.3s ease;
}
.step-box .step-process .process-flow .flow-item .flow-line {
  position: absolute;
  top: 25.5px;
  left: 50%;
  width: 353px;
  height: 0;
  border-bottom: 2px dashed #CFCFCF;
  z-index: 1;
}
.step-box .step-process .process-flow .flow-item.active .flow-text {
  color: #4299B4;
}
.step-box .step-process .process-flow .flow-item.completed .flow-line {
  border-bottom-color: #4299B4;
}
.step-box .step-process .step-cards {
  display: flex;
  justify-content: center;
  gap: 39px;
  width: 1435px;
}
@media screen and (max-width: 1300px) {
  .step-box .step-process .step-cards {
    width: 100%;
  }
}
.step-box .step-process .step-cards .card-item {
  position: relative;
  width: 331px;
  height: 291px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.step-box .step-process .step-cards .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.step-box .step-process .step-cards .card-item.active {
  transform: translateY(-12px);
}
.step-box .step-process .step-cards .card-item.active::before {
  opacity: 1;
}

.core-value-box {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  font-family: "Microsoft YaHei", sans-serif;
}
.core-value-box .core-value-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 0 16px;
}
@media (min-width: 1550px) {
  .core-value-box .core-value-container {
    max-width: 1536px;
  }
}
.core-value-box .core-value-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  text-align: center;
}
.core-value-box .core-value-header .core-value-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #1E1E1E;
  margin: 0;
}
.core-value-box .core-value-header .core-value-desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #606266;
  margin: 0;
}
.core-value-box .core-value-header .core-value-desc > span {
  color: #4299B4;
}
.core-value-box .core-value-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  gap: 100px;
}
.core-value-box .core-value-content.reverse {
  justify-content: flex-end;
  gap: 0;
}
.core-value-box .core-value-content .content-image {
  position: relative;
  width: 657px;
  height: 509px;
  background-image: url("https://res.daetool.com/wm-static-resource/wm/750_wm/core_value_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.core-value-box .core-value-content .content-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 40%;
}
.core-value-box .core-value-content .content-text .text-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #1E1E1E;
  margin: 0;
  white-space: pre-line;
}
.core-value-box .core-value-content .content-text .text-heading > span {
  color: #4299B4;
  font-family: "Microsoft YaHei";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  /* 150% */
}
.core-value-box .core-value-content .content-text .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-width: 200px;
  height: 62px;
  padding: 15px 31px;
  background-color: #4299B4;
  border-radius: 8px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin: 0;
}
.core-value-box .core-value-content .content-text .download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.core-value-box .core-value-content .content-text .download-btn .btn-text {
  font-size: 23px;
  font-weight: 400;
  color: #FFFFFF;
}
.core-value-box .core-value-content .content-text .download-btn .btn-icon {
  width: 32px;
  height: 32px;
}
.core-value-box .core-value-content.reverse .content-image {
  width: 676px;
  height: 495px;
  background-image: none;
}
.core-value-box .core-value-content.reverse .content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.core-value-box .core-value-content.guide {
  margin-bottom: 0;
}
.core-value-box .core-value-content.guide .content-image {
  width: 742px;
  height: 483px;
  background-image: none;
}
.core-value-box .core-value-content.guide .content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apply-box {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 0;
  background-color: #F5FDFF;
  font-family: "Microsoft YaHei", sans-serif;
  box-sizing: border-box;
}
.apply-box .apply-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.apply-box .apply-header {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.apply-box .apply-header .apply-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #1E1E1E;
  margin: 0;
}
.apply-box .apply-swiper {
  width: 100%;
  padding-bottom: 60px;
}
.apply-box .apply-swiper .swiper-slide {
  width: 1086px;
  height: 393px;
  display: flex;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.apply-box .apply-swiper .slide-card {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0px 0px 45px 0px rgba(100, 113, 158, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}
.apply-box .apply-swiper .slide-card .card-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.apply-box .apply-swiper .slide-card .card-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 75px;
  box-sizing: border-box;
}
.apply-box .apply-swiper .slide-card .card-content .card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 480px;
}
.apply-box .apply-swiper .slide-card .card-content .card-text .text-tag {
  font-size: 29px;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 6px;
}
.apply-box .apply-swiper .slide-card .card-content .card-text .text-title {
  font-size: 22px;
  font-weight: 400;
  color: #4299B4;
  margin: 0 0 20px -10px;
}
.apply-box .apply-swiper .slide-card .card-content .card-text .text-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apply-box .apply-swiper .slide-card .card-content .card-text .text-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.apply-box .apply-swiper .slide-card .card-content .card-text .text-list li .dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4299B4;
  margin-top: 8px;
  flex-shrink: 0;
}
.apply-box .apply-swiper .slide-card .card-content .card-text .text-list li p {
  font-size: 19px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}
.apply-box .apply-swiper .slide-card .card-content .card-image {
  width: 431px;
  height: 366px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.apply-box .apply-swiper .slide-card .card-content .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.apply-box .apply-swiper .swiper-pagination {
  bottom: 0;
}
.apply-box .apply-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #AED8E5;
  opacity: 1;
  margin: 0 6px;
  transition: background-color 0.3s ease;
}
.apply-box .apply-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #369AB9;
  border-radius: 6px;
}

.assess-box {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 0;
  background-color: #FFFFFF;
  font-family: "Microsoft YaHei", sans-serif;
  box-sizing: border-box;
}
.assess-box .assess-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 0 16px;
  box-sizing: border-box;
}
@media (min-width: 1550px) {
  .assess-box .assess-container {
    max-width: 1504px;
  }
}
.assess-box .assess-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 76px;
  text-align: center;
}
.assess-box .assess-header .assess-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #1E1E1E;
  margin: 0;
}
.assess-box .assess-header .assess-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #606266;
  margin: 0;
}
.assess-box .assess-header .assess-subtitle > span {
  color: #4299B4;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 100% */
}
.assess-box .assess-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 31px;
  width: 100%;
}
.assess-box .assess-grid .assess-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 459px;
  height: 211px;
  padding: 35px 28px;
  background-color: #FFFFFF;
  border-radius: 11px;
  box-shadow: 0px 9.57px 28.72px -4.79px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.assess-box .assess-grid .assess-card .user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.assess-box .assess-grid .assess-card .user-info .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.assess-box .assess-grid .assess-card .user-info .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.assess-box .assess-grid .assess-card .user-info .info-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.assess-box .assess-grid .assess-card .user-info .info-text .user-name {
  font-size: 22px;
  font-weight: 700;
  color: #1E1E1E;
  margin: 0;
  font-family: "Inter", sans-serif;
}
.assess-box .assess-grid .assess-card .user-info .info-text .user-role {
  font-size: 15px;
  font-weight: 400;
  color: #606266;
  margin: 0;
  font-family: "Inter", sans-serif;
}
.assess-box .assess-grid .assess-card .assess-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.32;
  color: #757575;
  margin: 0;
  text-align: left;
}
.assess-box .assess-grid .assess-card .star-rating {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assess-box .assess-grid .assess-card .star-rating img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottom-download-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 212px;
  background: linear-gradient(270deg, #3CA4C5 0%, #0D789B 100%);
  font-family: "Microsoft YaHei", sans-serif;
  overflow: hidden;
}
.bottom-download-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://res.daetool.com/wm-static-resource/wm/750_wm/download_bg.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.bottom-download-box .download-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  box-sizing: border-box;
}
@media (min-width: 1550px) {
  .bottom-download-box .download-container {
    max-width: 1536px;
  }
}
.bottom-download-box .download-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.bottom-download-box .download-left .download-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bottom-download-box .download-left .download-title-row .download-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.bottom-download-box .download-left .download-title-row .download-title {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.5;
}
.bottom-download-box .download-left .download-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.1;
  padding-left: 0;
}
.bottom-download-box .download-right .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-width: 200px;
  height: 62px;
  padding: 15px 31px;
  background-color: #4299B4;
  border-radius: 8px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, opacity 0.2s ease;
  background-color: #FFFFFF;
  border: 1px solid #4299B4;
  box-shadow: 0px 8px 20px 0px rgb(23, 137, 172), 0px 3px 10px 0px rgba(0, 123, 215, 0.4), 0px 2px 5px 0px rgba(0, 165, 215, 0.3);
}
.bottom-download-box .download-right .download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.bottom-download-box .download-right .download-btn .btn-text {
  font-size: 23px;
  font-weight: 400;
  color: #FFFFFF;
}
.bottom-download-box .download-right .download-btn .btn-icon {
  width: 32px;
  height: 32px;
}
.bottom-download-box .download-right .download-btn:hover {
  background-color: #F0F9FF;
  transform: translateY(-2px);
}
.bottom-download-box .download-right .download-btn .btn-text {
  color: #4299B4;
}

/*# sourceMappingURL=style.css.map */
