.page-indicate {
  position: fixed;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  z-index: 999;
}
.page-indicate .indicate-wrapper .indicate-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #eeeeee;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.page-indicate .indicate-wrapper .indicate-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.page-indicate .indicate-wrapper .indicate-item.active {
  background: #941203;
}
.page-indicate .indicate-wrapper .indicate-item.active::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background-image: radial-gradient(#941203 0%, #fff 100%);
  top: -50%;
  left: -50%;
  z-index: -1;
}
.page-indicate .indicate-wrapper .indicate-item + .indicate-item {
  margin-top: 30px;
}
.page-indicate .indicate-wrapper .indicate-item + .indicate-item::before {
  content: "";
  display: block;
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 2px;
  height: 32px;
  position: absolute;
  bottom: 100%;
  left: 4px;
}

.container {
  width: 100vw;
}
.container .honor-content {
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 100vh;
}
.container .honor-content video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container .honor-content .honor-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: transparent;
  text-align: center;
  background-image: linear-gradient(-45deg, #fff 0%, #fff 40%, gold 40%, gold 45%, #fff 45%, #fff 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 30s linear infinite;
}
@keyframes shine {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3000% 0;
  }
}
.container .honor-content .honor-wrapper h1 {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 28px;
}
.container .honor-content .honor-wrapper .honor-list {
  display: flex;
  width: 100%;
  height: 136px;
  align-items: center;
}
.container .honor-content .honor-wrapper .honor-list .honor-item {
  flex: 1;
  height: 100%;
}
.container .honor-content .honor-wrapper .honor-list .honor-item .honor-item-value {
  font-size: 50px;
  font-weight: bold;
  font-family: "AlimamaShuHei";
}
.container .honor-content .honor-wrapper .honor-list .honor-item .honor-item-title {
  font-size: 26px;
}
.container .trans-button {
  font-size: 16px;
  padding: 13px 28px;
  cursor: pointer;
  color: #ffffff;
  outline: none;
  border-radius: 10px;
  border: 2px solid #ffffff;
  background-color: transparent;
}
.container .trans-button:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.container .trans-button:active {
  background-color: rgba(255, 255, 255, 0.2);
}
.container .gray-button {
  font-size: 16px;
  padding: 13px 28px;
  cursor: pointer;
  color: #333333;
  outline: none;
  border-radius: 10px;
  border: 2px solid #999999;
  background-color: transparent;
  display: inline-block;
  text-decoration: none;
}
.container .gray-button:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.container .gray-button:active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  color: #ffffff;
  background: #999999;
}
.container .compare-content {
  background: #fff;
  padding: 85px 0 60px 0;
  text-align: center;
}
.container .compare-content .compare-table-wrapper {
  margin: 22px auto 0;
  width: fit-content;
}
.container .compare-content .compare-table-wrapper table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #E1D4D4;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}
.container .compare-content .compare-table-wrapper table th {
  position: relative;
}
.container .compare-content .compare-table-wrapper table th .color-banner {
  position: absolute;
  width: 242px;
  height: 10px;
  background: #D8D8D8;
  position: absolute;
  top: -10px;
  left: -1px;
}
.container .compare-content .compare-table-wrapper table th:before {
  content: "";
  height: 10px;
  width: 242px;
  display: block;
  background: #D8D8D8;
  position: absolute;
  top: -10px;
  left: -1px;
}
.container .compare-content .compare-table-wrapper table th:nth-child(2):before {
  background: #941203;
}
.container .compare-content .compare-table-wrapper table th:nth-child(3):before {
  background: #DAA30E;
}
.container .compare-content .compare-table-wrapper table th:nth-child(4):before {
  background: #254E94;
}
.container .compare-content .compare-table-wrapper table th:nth-child(5):before {
  background: #708E48;
}
.container .compare-content .compare-table-wrapper table th, .container .compare-content .compare-table-wrapper table td {
  padding: 12px 0px;
}
.container .compare-content .compare-table-wrapper table th:first-child, .container .compare-content .compare-table-wrapper table td:first-child {
  background: #F4F3F3;
}
.container .compare-content .compare-table-wrapper table td:nth-child(2) svg {
  fill: #941203;
}
.container .compare-content .compare-table-wrapper table td:nth-child(3) svg {
  fill: #DAA30E;
}
.container .compare-content .compare-table-wrapper table td:nth-child(4) svg {
  fill: #254E94;
}
.container .compare-content .compare-table-wrapper table td:nth-child(5) svg {
  fill: #708E48;
}
.container .compare-content .compare-table-wrapper table tr:hover {
  background: #F3F2F2;
}
.container .compare-content .compare-table-wrapper table tr:hover td:first-child, .container .compare-content .compare-table-wrapper table tr:hover th:first-child {
  background: #E7E5E5;
}
.container .compare-content .svg-icon {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}
.container .product-content {
  background: #FAF9F9;
  padding: 85px 0 60px 0;
}
.container .product-content .product-wrapper {
  margin-top: 22px;
  width: 100%;
}
.container .product-content .product-wrapper .product-select {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.container .product-content .product-wrapper .product-select .product-select-item {
  cursor: pointer;
  font-size: 18px;
  color: #333333;
  position: relative;
}
.container .product-content .product-wrapper .product-select .product-select-item:not(:last-child) {
  margin-right: 140px;
}
.container .product-content .product-wrapper .product-select .product-select-item:hover {
  color: #941203;
}
.container .product-content .product-wrapper .product-select .product-select-item.active {
  color: #941203;
}
.container .product-content .product-wrapper .product-select .product-select-item.active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #941203;
  margin-top: 8px;
}
.container .product-content .product-wrapper .product-detail {
  white-space: nowrap;
  overflow: hidden;
  height: 540px;
}
.container .product-content .product-wrapper .product-detail .swiper {
  height: 100%;
}
.container .product-content .product-wrapper .product-detail .product-detail-item {
  height: 100%;
  width: 100%;
  padding: 70px 0 0 0;
  display: flex;
  justify-content: center;
}
.container .product-content .product-wrapper .product-detail .product-detail-item.p10 {
  background: url("../image/home/red_prd_bg.png") no-repeat 0 0/82% 87%;
}
.container .product-content .product-wrapper .product-detail .product-detail-item.p20 {
  background: url("../image/home/blue_prd_bg.png") no-repeat 0 0/82% 87%;
}
.container .product-content .product-wrapper .product-detail .product-detail-item.p30 {
  background: url("../image/home/green_prd_bg.png") no-repeat 0 0/82% 87%;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .left-content {
  flex: 0 1 300px;
  color: #ffffff;
  margin-right: 20px;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .left-content .product-title {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 45px;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .left-content .left-menu {
  color: rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0px 10px 10px 0px;
  margin-bottom: 45px;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .left-content .left-menu .left-menu-item {
  height: 40px;
  padding-left: 24px;
  line-height: 40px;
  font-size: 16px;
  cursor: pointer;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .left-content .left-menu .left-menu-item:hover {
  color: #ffffff;
  border-left: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.4);
}
.container .product-content .product-wrapper .product-detail .product-detail-item .left-content .left-menu .left-menu-item:active {
  color: #ffffff;
  border-left: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}
.container .product-content .product-wrapper .product-detail .product-detail-item .left-content .left-menu .left-menu-item.active {
  color: #ffffff;
  border-left: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.4);
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content {
  flex: 0 1 1000px;
  height: 480px;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-content-wrapper {
  width: 100%;
  height: 330px;
  box-sizing: border-box;
  padding: 38px 0 0 40px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.4);
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-text {
  width: 30%;
  height: 260px;
  margin-right: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-text .product-name {
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-text .product-desc {
  flex: 1;
  font-size: 14px;
  color: #999999;
  line-height: 1.5;
  white-space: normal;
  margin-bottom: 20px;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-text .product-desc ul {
  padding-inline-start: 1em;
  margin: 0;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-text .product-more {
  font-size: 16px;
  color: #941203;
  cursor: pointer;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-text .product-more img {
  width: 16px;
  height: 16px;
  vertical-align: top;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-img {
  width: calc(70% - 20px);
  height: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.container .product-content .product-wrapper .product-detail .product-detail-item .right-content .product-detail-content .product-detail-img img {
  width: 100%;
  height: 120%;
  object-fit: contain;
}
.container .topology-content {
  padding: 85px 0 60px 0;
  background: url("../image/home/topology_bg.png") no-repeat 0 0/100% 100%;
}
.container .topology-content .topology-wrapper {
  width: 1278px;
  height: 777px;
  margin: 0 auto;
  position: relative;
  background: url("../image/home/topology_bg.svg") no-repeat 0 0/100% 100%;
}
.container .topology-content .topology-wrapper .topo-item {
  position: absolute;
}
.container .topology-content .topology-wrapper .topo-item.topo-item-normal .topo-icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 120%;
  height: 100%;
  bottom: -20px;
  left: -10%;
  background: url("../image/home/normal-seat.png") no-repeat bottom center;
}
.container .topology-content .topology-wrapper .topo-item.topo-item-big .topo-icon {
  margin-bottom: 5px;
}
.container .topology-content .topology-wrapper .topo-item.topo-item-big .topo-icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 150%;
  height: 100%;
  bottom: -50px;
  left: -25%;
  background: url("../image/home/big-seat.png") no-repeat bottom center;
  z-index: 0;
}
.container .topology-content .topology-wrapper .topo-item .topo-icon {
  margin-bottom: 20px;
  position: relative;
}
.container .topology-content .topology-wrapper .topo-item .topo-icon img {
  animation: float 5s infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.container .topology-content .topology-wrapper .topo-item .topo-title {
  text-align: center;
  font-size: 16px;
  color: #333333;
  position: relative;
  z-index: 10;
}
.container .platform-content {
  background: #ffffff;
  padding: 85px 0 60px 0;
}
.container .platform-content .platform-wrapper {
  text-align: center;
}
.container .platform-content .platform-wrapper > div {
  transform: scale(0);
}
.container .platform-content .platform-wrapper .left-content {
  display: inline-block;
  vertical-align: top;
  width: 450px;
  height: 540px;
  padding-top: 89px;
  text-align: left;
  box-sizing: border-box;
}
.container .platform-content .platform-wrapper .left-content .platform-title {
  font-size: 50px;
  color: #333333;
  margin-bottom: 20px;
}
.container .platform-content .platform-wrapper .left-content .platform-desc {
  font-size: 20px;
  color: #999999;
  line-height: 1.5;
  margin-bottom: 40px;
  height: 110px;
}
.container .platform-content .platform-wrapper .left-content .step-desc-container {
  height: 250px;
  overflow: hidden;
}
.container .platform-content .platform-wrapper .left-content .step-item {
  color: #ffffff;
  width: 100%;
  height: 220px;
  margin: 15px 0;
  border-radius: 20px;
  background: #941203;
  position: relative;
  padding: 44px 65px 0 44px;
  box-sizing: border-box;
}
.container .platform-content .platform-wrapper .left-content .step-item .step-bg-icon {
  position: absolute;
  right: 10px;
  bottom: -10px;
}
.container .platform-content .platform-wrapper .left-content .step-item .step-bg-icon svg {
  height: 212px;
  width: 212px;
  fill: rgba(255, 255, 255, 0.4);
}
.container .platform-content .platform-wrapper .left-content .step-item .step-title {
  font-size: 18px;
  margin-bottom: 30px;
}
.container .platform-content .platform-wrapper .left-content .step-item .step-desc {
  font-size: 16px;
  line-height: 1.5;
}
.container .platform-content .platform-wrapper .right-content {
  display: inline-block;
  margin-left: -60px;
  width: 811px;
  height: 514px;
  border-radius: 20px;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.4);
  position: relative;
  background: #ffffff url("../image/step/step_bg.png") no-repeat 0 0/100% 100%;
  z-index: 10;
}
.container .platform-content .platform-wrapper .right-content .step-button {
  width: 164px;
  height: 70px;
  border-radius: 20px;
  position: absolute;
  font-size: 20px;
  color: #333333;
  background: #F4F1F1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.container .platform-content .platform-wrapper .right-content .step-button svg {
  height: 28px;
  width: 28px;
  margin-right: 10px;
  fill: #941203;
}
.container .platform-content .platform-wrapper .right-content .step-button.active, .container .platform-content .platform-wrapper .right-content .step-button:hover {
  background: #941203;
  color: #ffffff;
}
.container .platform-content .platform-wrapper .right-content .step-button.active svg, .container .platform-content .platform-wrapper .right-content .step-button:hover svg {
  fill: #ffffff;
}
.container .platform-content .platform-wrapper .right-content .step-button:active {
  background: #941203;
  color: #666666;
}
.container .platform-content .platform-wrapper .right-content .step-button:active svg {
  fill: #666666;
}
.container .service-content {
  background: #FAF9F9;
  padding: 85px 0 60px 0;
}
.container .service-content .service-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 40px auto 0;
}
.container .service-content .service-wrapper .service-item {
  width: 326px;
  height: 292px;
  padding: 25px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  margin: 0 20px 20px 0;
  transition: all 0.3s;
  transform: scale(0);
}
.container .service-content .service-wrapper .service-item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
}
.container .service-content .service-wrapper .service-item:hover .service-item-header {
  transform: scale(1.05);
}
.container .service-content .service-wrapper .service-item .service-item-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #E1D4D4;
  transition: all 0.3s;
}
.container .service-content .service-wrapper .service-item .service-item-header .service-title {
  font-size: 24px;
  color: #333333;
}
.container .service-content .service-wrapper .service-item .service-body {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  height: 135px;
}
.container .service-content .service-wrapper .service-item .service-body ul {
  padding-left: 20px;
}
.container .service-content .service-wrapper .service-item .service-body ul li {
  margin-bottom: 10px;
}
.container .service-content .service-wrapper .service-item .service-footer {
  text-align: center;
}
.container .service-content .service-wrapper .service-item .service-footer span {
  font-size: 16px;
  color: #941203;
  cursor: pointer;
}
.container .service-content .service-wrapper .service-item .service-footer span img {
  width: 16px;
  height: 16px;
  vertical-align: top;
}
.container .case-content {
  background: #ffffff;
  padding: 85px 0 60px 0;
}
.container .case-content .case-wrapper {
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
}
.container .case-content .case-wrapper a {
  text-decoration: none;
}
.container .case-content .case-wrapper .case-item {
  max-width: 346px;
  height: 400px;
  border-radius: 10px;
  background: #FAF9F9;
  margin: 0 12px 20px 12px;
  transform: scale(0);
}
.container .case-content .case-wrapper .case-item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
}
.container .case-content .case-wrapper .case-item:hover .case-item-header img {
  transform: scale(1.05);
}
.container .case-content .case-wrapper .case-item .case-item-header {
  overflow: hidden;
  border-radius: 10px;
}
.container .case-content .case-wrapper .case-item .case-item-header img {
  width: 100%;
  height: 148px;
  transition: all 0.3s;
}
.container .case-content .case-wrapper .case-item .case-item-body {
  padding: 20px 26px 0 26px;
  height: 180px;
}
.container .case-content .case-wrapper .case-item .case-item-body .case-type {
  font-size: 16px;
  margin-bottom: 10px;
}
.container .case-content .case-wrapper .case-item .case-item-body .case-type.type1 {
  color: #941203;
}
.container .case-content .case-wrapper .case-item .case-item-body .case-type.type2 {
  color: #DAA30E;
}
.container .case-content .case-wrapper .case-item .case-item-body .case-type.type3 {
  color: #254E94;
}
.container .case-content .case-wrapper .case-item .case-item-body .case-type.type4 {
  color: #708E48;
}
.container .case-content .case-wrapper .case-item .case-item-body .case-title {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
}
.container .case-content .case-wrapper .case-item .case-item-body .case-desc {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}
.container .case-content .case-wrapper .case-item .case-item-footer {
  padding: 0 26px 0 26px;
}
.container .case-content .case-wrapper .case-item .case-item-footer a {
  text-decoration: none;
  font-size: 14px;
  color: #333333;
}
.container .aboutus-content {
  height: 837px;
  background: #ffffff url("../image/home/about-us-bg.png") no-repeat 0 0/100% 600px;
  padding: 85px 0 60px 0;
  box-sizing: border-box;
  position: relative;
}
.container .aboutus-content .aboutus-wrapper {
  margin: 90px auto 0 auto;
  width: 70%;
}
.container .aboutus-content .aboutus-wrapper .aboutus-title {
  font-size: 30px;
  color: #3D3D3D;
  margin-bottom: 26px;
}
.container .aboutus-content .aboutus-wrapper .aboutus-desc {
  width: 100%;
  max-width: 577px;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  margin-bottom: 30px;
}
.container .aboutus-content .aboutus-award {
  position: absolute;
  top: 516px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 1480px;
  padding: 32px 36px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(148, 18, 3, 0.2);
  overflow: hidden;
}
.container .aboutus-content .aboutus-award .award-swiper {
  text-align: center;
  box-sizing: border-box;
}
.container .aboutus-content .aboutus-award .award-swiper .swiper-slide:hover img {
  transform: scale(1.5);
}
.container .aboutus-content .aboutus-award .award-swiper .swiper-slide img {
  width: 170px;
  height: 122px;
  transition: all 0.3s;
}

.backtop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.backtop .backtop-wrapper .backtop-box {
  transform: scale(0);
  width: 36px;
  border-radius: 18px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(148, 18, 3, 0.3);
  transition: all 0.3s;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon {
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 9px;
  box-sizing: border-box;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon svg {
  width: 18px;
  height: 18px;
  fill: #B1A2A0;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon + .backtop-icon {
  border-top: 1px solid #E1D4D4;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon:hover svg {
  fill: #941203;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon:hover .hidden-box {
  display: block;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon .hidden-box {
  display: none;
  position: absolute;
  right: 45px;
  top: 18px;
  transform: translateY(-50%);
  padding: 8px 10px;
  text-align: center;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(148, 18, 3, 0.3);
  white-space: nowrap;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon .hidden-box:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: -5px;
  top: 50%;
  background: #ffffff;
  transform: translateY(-50%) rotateZ(45deg);
  z-index: 0;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon .hidden-box .hidden-box-title {
  font-size: 12px;
  line-height: 20px;
  color: #B1A2A0;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon .hidden-box .hidden-box-number {
  font-size: 12px;
  line-height: 20px;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon .hidden-box .hidden-box-number a {
  text-decoration: none;
  color: #941203;
}
.backtop .backtop-wrapper .backtop-box .backtop-icon .hidden-box .hidden-box-image img {
  width: 88px;
  height: 88px;
}
.backtop .backtop-wrapper .backtop-box + .backtop-box {
  margin-top: 9px;
}
.backtop .backtop-wrapper .backtop-box.spec:hover {
  background: #941203;
}
.backtop .backtop-wrapper .backtop-box.spec:hover svg {
  fill: #ffffff;
}
.backtop .backtop-wrapper .backtop-box.show {
  transform: scale(1);
}

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