html{
  background: #ffffff;
}
/* 展开收起 */
.servers-module-expand {
  margin-left: auto;
  font-size: 1.05rem;
  color: #0c377d;
  letter-spacing: 0;
  font-weight: 500;
}
.servers-module-expand .servers-module-expand-button {
  display: block;
  /* background: url(down-arrows.svg) no-repeat right center; */
  /* padding-right: 0.8125rem;
  background-size: 0.5rem 0.375rem; */
  cursor: pointer;
  color: #fff;
  font-size: 0.875rem;
  background-image: linear-gradient(148deg, #5197ff 0%, #1e78ff 96%);
  box-shadow: inset 0px -0.0625rem 0.125rem 0px rgba(17, 75, 163, 0.73);
  box-shadow: inset 0px 0.0625rem 0.125rem 0px rgba(255, 255, 255, 0.56);
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  padding: 0 0.75rem;
  line-height: 2.125rem;
  display: flex;
  align-items: center;
}
.servers-module-expand .servers-module-expand-button::after {
  display: block;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  background: url(expand-icon.svg) no-repeat;
  background-size: 100% 100%;
  margin-left: 0.5rem;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.servers-module-expand .servers-module-expand-button.put-away::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/* 空状态 */
.empty-state {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  height: 100%;
  flex: 1;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
}
.empty-state img {
  display: block;
  width: 5.8125rem;
}
.empty-state .empty-description {
  color: #8b95a8;
  font-size: 0.875rem;
  margin-top: 0.875rem;
  padding-right: 0.75rem;
}

/* 下拉菜单 */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 18.125rem;
}
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0.0625rem solid rgba(220, 223, 230, 1);
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #333333;
  line-height: 2rem;
  background: #ffffff;
  cursor: pointer;
  border-radius: 0.25rem;
}
.custom-select.open .custom-select__trigger {
  /* border-radius: .25rem .25rem 0 0;
  -webkit-border-radius: .25rem .25rem 0 0;
  -moz-border-radius: .25rem .25rem 0 0;
  -ms-border-radius: .25rem .25rem 0 0;
  -o-border-radius: .25rem .25rem 0 0; */
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}
.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 300;
  color: #3b3b3b;
  line-height: 2;
  cursor: pointer;
  transition: all 0.5s;
}
.custom-option:hover {
  cursor: pointer;
  background-color: #f5f5f5;
}
.custom-option.selected {
  /* color: #ffffff; */
  /* background-color: #305c91; */
}
.custom-select-arrow {
  position: relative;
  height: 1rem;
  width: 1rem;
  background: url(custom-select-arrow.svg) no-repeat center;
  background-size: 100% 100%;
  transition: all 0.5s;
}
.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}
.arrow::before {
  left: -5px;
  transform: rotate(45deg);
  background-color: #394a6d;
}
.arrow::after {
  left: 5px;
  transform: rotate(-45deg);
  background-color: #394a6d;
}
.open .arrow::before {
  left: -5px;
  transform: rotate(-45deg);
}
.open .arrow::after {
  left: 5px;
  transform: rotate(45deg);
}

/* 服务资讯政策 */
.services-information-img {
  width: 35.25rem;
  height: 23.0625rem;
}
.services-information-swiper {
  position: relative;
  overflow: hidden;
}
.services-information-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-information-item-description {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 3rem;
  background: rgba(0, 0, 0, 0.76);
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0;
  font-weight: 500;
  padding: 0 9.375rem 0 1.25rem;
}
.information-swiper-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-bullets {
  text-align: right;
  padding-right: 1.25rem;
  bottom: 1rem !important;
}

.information-swiper-button-next,
.information-swiper-button-prev {
  width: 1.625rem;
  height: 1.625rem;
}
.information-swiper-button-next {
  background: url(switch-arrows.svg) no-repeat;
  background-size: 100% 100%;
}
.information-swiper-button-prev {
  background: url(switch-arrows.svg) no-repeat;
  background-size: 100% 100%;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.services-information-list {
  width: 38.5rem;
  margin-left: 1.25rem;
}
.services-tabcut-hd {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  border-bottom: 0.0625rem solid #1e78ff;
  padding-bottom: 0.9375rem;
}
.services-tabcut-hd .services-tabcut-item {
  font-size: 1.125rem;
  line-height: 1.5625rem;

  letter-spacing: 0;
  font-weight: 400;
  margin-right: 1.875rem;
}
.services-tabcut-hd .services-tabcut-item .services-tabcut-item-ctitle {
  color: #333333;
  font-weight: 350;
}
.services-tabcut-item .services-tabcut-item-ctitle::after {
  display: block;
  content: "";
  width: 0%;
  height: 0.5625rem;
  background-image: linear-gradient(
    270deg,
    rgba(98, 249, 255, 0) 0%,
    #62f9ff 100%
  );
  border-radius: 0.3125rem;
  -webkit-border-radius: 0.3125rem;
  -moz-border-radius: 0.3125rem;
  -ms-border-radius: 0.3125rem;
  -o-border-radius: 0.3125rem;
  margin-top: -0.5rem;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.services-tabcut-hd .services-tabcut-item.active .services-tabcut-item-ctitle {
  font-weight: 500;
}
.services-tabcut-item.active .services-tabcut-item-ctitle::after {
  width: 50%;
}
.services-tabcut-hd .services-item:last-child {
  margin-right: 0;
}
.services-tabcut-hd .services-tabcut-item-more {
  position: absolute;
  top: 0.3125rem;
  right: 0;
  font-size: 0.875rem;
  color: #2f73e3;
  letter-spacing: 0;
  font-weight: 400;
  display: none;
}

.services-tabcut-item.active .services-tabcut-item-more {
  display: block;
}

.services-information-tabcut-content li {
  line-height: 3.375rem;
  border-bottom: 0.0525rem dashed rgba(238, 238, 238, 1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.services-information-tabcut-content li .information-title {
  display: block;
  width: 80%;
}
.services-information-tabcut-content li .information-time {
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.74);
  letter-spacing: 0;
  font-weight: 400;
}

.services-bucket-list-button {
  text-align: right;
  margin-bottom: 0.75rem;
}
.services-bucket-list-button .servers-module-expand {
  display: inline-block;
}
.servers-module-expand {
  margin-left: auto;
  font-size: 1.05rem;
  color: #0c377d;
  letter-spacing: 0;
  font-weight: 500;
}
.services-bucket-list {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0.5rem 1rem 0px rgba(0, 58, 134, 0.2);
  padding: 1.25rem 1.25rem .625rem 1.25rem;
  /* min-height: 25rem; */
}