.s2-dataCenter {
  padding-top: 80px;
}
.s2-dataCenter .s2-banner {
  background: url("/web/shiwaicloud/s2-file/assets/img/dataCenter/dc_banner.jpg") no-repeat center;
  background-size: cover;
}
.s2-dataCenter .s2-banner .s2-defaultWidth .s2-bannerTitle span {
  margin-bottom: 30px;
  color: #fff;
}
.s2-dataCenter .s2-banner .s2-defaultWidth .s2-bannerTitle p {
  color: #fff;
  width: 500px;
}
@media (max-width: 768px) {
  .s2-dataCenter .s2-banner {
    background: url("/web/shiwaicloud/s2-file/assets/img/dataCenter/bannerb576ba0b715b1d19.png") no-repeat center;
    background-size: cover;
    height: 70vw;
  }
  .s2-dataCenter .s2-banner .s2-defaultWidth .s2-bannerTitle {
    justify-content: center;
  }
  .s2-dataCenter .s2-banner .s2-defaultWidth .s2-bannerTitle span {
    margin-bottom: 3vw;
    text-align: left;
  }
  .s2-dataCenter .s2-banner .s2-defaultWidth .s2-bannerTitle p {
    color: #fff;
    width: 60%;
    -webkit-line-clamp: initial;
  }
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection {
  display: flex;
  gap: 30px;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl {
  flex: 0.2;
  font-size: 16px;
  color: #333;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 30px 0;
  background-color: #f5f5f5;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-itemClickToSwitch {
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-itemClickToSwitch::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("/web/shiwaicloud/s2-file/assets/img/dataCenter/dc_icon_location.png") no-repeat center;
  background-size: contain;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-itemClickToSwitch:hover {
  background-color: rgb(168, 219, 245);
  color: #fff;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-selectedStatus {
  background-color: rgb(0, 170, 255);
  color: #fff;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-selectedStatus:hover {
  background-color: rgb(0, 170, 255);
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item {
  padding: 30px;
  display: none;
  flex-direction: column;
  gap: 20px;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item .s2-titleses {
  color: #555555;
  font-size: 20px;
  font-weight: 700;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item p {
  color: #555555;
  line-height: 28px;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item .s2-labelse {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #00aaff;
  padding: 10px 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-visibleAndHidden {
  display: flex;
  animation: switchAnimation 0.5s ease-in-out;
  -webkit-animation: switchAnimation 0.5s ease-in-out;
}
@keyframes switchAnimation {
  0% {
    opacity: 0;
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
}
@media (max-width: 768px) {
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl {
    display: flex;
    justify-content: space-between;
    font-size: 4vw;
    padding: 0;
    background-color: #f5f5f5;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-itemClickToSwitch {
    padding: 5vw 0;
    width: 100%;
    cursor: pointer;
    position: relative;
    text-align: center;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-itemClickToSwitch::after {
    content: initial;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-selectedStatus {
    background-color: rgb(0, 170, 255);
    color: #fff;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-leftControl .s2-selectedStatus:hover {
    background-color: rgb(0, 170, 255);
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item {
    padding: 0;
    display: none;
    flex-direction: column;
    gap: 4vw;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item .s2-titleses {
    font-size: 5vw;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item p {
    line-height: 7vw;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item .s2-labelse {
    gap: 10vw;
    padding: 3vw 5vw;
    font-size: 3vw;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-switchContent-item .s2-labelse img {
    width: 8vw;
    height: 8vw;
  }
  .s2-dataCenter .s2-successfullyCovered .s2-defaultWidth .s2-currentSection .s2-switchContent .s2-visibleAndHidden {
    display: flex;
    animation: switchAnimation 0.5s ease-in-out;
    -webkit-animation: switchAnimation 0.5s ease-in-out;
  }
  @keyframes switchAnimation {
    0% {
      opacity: 0;
      transform: translateY(100px);
      -webkit-transform: translateY(100px);
      -moz-transform: translateY(100px);
      -ms-transform: translateY(100px);
      -o-transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -o-transform: translateY(0px);
    }
  }
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection {
  display: flex;
  flex-direction: column;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards:not(:first-child) {
  border-top: 1px solid #ccc;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards {
  background-color: #f5f5f5;
  height: 95px;
  overflow: hidden;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 95px;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition {
  display: flex;
  align-items: center;
  gap: 20px;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition .s2-labelDescription {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition .s2-labelDescription span {
  color: #333333;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition .s2-labelDescription p {
  color: #777;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-plusMinusSign {
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 170, 255);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  padding-bottom: 2px;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-extendedContent {
  padding: 10px 30px;
}
.s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-extendedContent p {
  color: #555555;
  line-height: 40px;
}
@media (max-width: 768px) {
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards {
    background-color: #f5f5f5;
    height: 20vw;
    overflow: hidden;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 20vw;
    position: relative;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition {
    display: flex;
    align-items: center;
    gap: 5vw;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition img {
    width: 8vw;
    height: 8vw;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition .s2-labelDescription {
    gap: 2vw;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition .s2-labelDescription span {
    font-size: 4vw;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-frontPosition .s2-labelDescription p {
    font-size: 3vw;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-control .s2-plusMinusSign {
    position: absolute;
    font-size: 4.5vw;
    width: 5vw;
    height: 5vw;
    right: 7vw;
    top: 2vw;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-extendedContent {
    padding: 2vw 5vw;
    font-size: 3vw;
  }
  .s2-dataCenter .s2-highStandard .s2-defaultWidth .s2-currentSection .s2-itemQualityStandards .s2-extendedContent p {
    line-height: 6vw;
  }
}

@media (max-width: 768px) {
  .s2-dataCenter {
    padding-top: 15vw;
  }
}

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