@charset "UTF-8";
@keyframes bounce_readmore {
  from, to {
    transform: translateY(-50%) scale(1, 1);
  }
  25% {
    transform: translateY(-50%) scale(0.9, 1.2);
  }
  50% {
    transform: translateY(-50%) scale(1.2, 0.9);
  }
  75% {
    transform: translateY(-50%) scale(0.9, 1.1);
  }
}
@keyframes bounce {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.2);
  }
  50% {
    transform: scale(1.2, 0.9);
  }
  75% {
    transform: scale(0.9, 1.1);
  }
}
@keyframes appearUp {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes _rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.button-rounded {
  display: inline-block;
  font-size: 14px;
  border: 2px solid #0b0b0b;
  border-radius: 8px;
  line-height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
}
.button-rounded i {
  margin-right: 5px;
}
.button-rounded.full {
  width: 100%;
}
.button-rounded.half {
  width: 50%;
}
.button-rounded.size1 {
  width: 225px;
}
.button-rounded.hover {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button-rounded.hover:hover {
  border-color: #f29500;
  color: #f29500;
}
.button-rounded.green {
  background-color: #0091a7;
  border-color: #0091a7;
  color: white;
}
.button-rounded.green.alt {
  color: #0091a7;
}
.button-rounded.green.alt.hover:hover {
  background-color: white;
  color: #d98500;
  border-color: #f29500;
}
.button-rounded.green.hover:hover {
  background-color: #f29500;
  border-color: #f29500;
  color: white;
}
.button-rounded.alt {
  background: white;
}

.input-box {
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
  width: 100%;
  border-radius: 0;
}
.input-box[readonly] {
  border-color: #E1E6F9;
  background-color: #F6F8FF;
  cursor: not-allowed;
}
.input-box[disabled] {
  border-color: #e8e8e8;
  background-color: #fbfbfb;
  color: #9c9c9c;
  cursor: not-allowed;
}

.select-box {
  height: 40px;
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
}

input[type=checkbox].checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
  appearance: none;
}
input[type=checkbox].checkbox-box + label {
  vertical-align: middle;
}
input[type=checkbox].checkbox-box + label .label-box {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  border: 1px solid #BBC1E1;
  transition: border-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), background-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  font-size: 12px;
  vertical-align: text-bottom;
  background: white;
}
input[type=checkbox].checkbox-box + label .label-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2, 2);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  color: white;
  display: block;
}
input[type=checkbox].checkbox-box + label:hover .label-box {
  border-color: #275EFE;
}
input[type=checkbox].checkbox-box + label .checkbox-message {
  margin-left: 10px;
}
input[type=checkbox].checkbox-box:checked + label .label-box {
  background: #275EFE;
  border-color: #275EFE;
}
input[type=checkbox].checkbox-box:checked + label .label-box i {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

input[type=radio].checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
  appearance: none;
}
input[type=radio].checkbox-box + label {
  vertical-align: middle;
}
input[type=radio].checkbox-box + label .label-box {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid #BBC1E1;
  transition: border-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), background-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  font-size: 12px;
  vertical-align: text-bottom;
  background: white;
}
input[type=radio].checkbox-box + label .label-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2, 2);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  color: white;
  display: block;
}
input[type=radio].checkbox-box + label:hover .label-box {
  border-color: #275EFE;
}
input[type=radio].checkbox-box + label .checkbox-message {
  margin-left: 10px;
}
input[type=radio].checkbox-box:checked + label .label-box {
  background: #275EFE;
  border-color: #275EFE;
}
input[type=radio].checkbox-box:checked + label .label-box i {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

.platform-head {
  position: relative;
  margin-bottom: 40px;
}
.platform-head img {
  width: 100%;
}

.platform-head-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.platform-head-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #0091a7;
  margin: 0 auto;
  margin-bottom: 20px;
}
.platform-head-icon img {
  width: 100%;
}

.platform-head-text {
  font-size: 48px;
  color: white;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
}
.platform-head-text strong {
  font-weight: 500;
}

.platform-neck {
  margin-bottom: 40px;
}

.platform-summary {
  font-size: 30px;
  margin-bottom: 0.8em;
  line-height: 1.8;
}

.platform-small {
  position: relative;
  font-size: 18px;
  padding-left: 0.8em;
  line-height: 1.8;
}
.platform-small::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
  margin-bottom: -40px;
}
.platform-list li {
  width: 33.333333%;
  padding-left: 40px;
  padding-bottom: 40px;
}

.platform-container {
  position: relative;
  height: 100%;
}
.platform-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #c2c2c2;
  pointer-events: none;
}
.platform-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 10px solid #0091a7;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  pointer-events: none;
}

.platform-item-icon {
  margin-bottom: 20px;
}
.platform-item-icon span {
  display: inline-block;
  width: 170px;
  height: 170px;
  line-height: 170px;
  border-radius: 50%;
  background: #f6f6f6;
}
.platform-item-icon span img {
  width: 80%;
}

.platform-item-text {
  font-size: 25px;
}

.platform-link {
  text-align: center;
}
.platform-link .platform-container {
  padding: 50px;
}
.platform-link:hover .platform-container::after {
  opacity: 1;
}
.platform-link:hover .platform-item-text {
  color: #0091a7;
}

.platform-container {
  padding: 30px 50px;
}

.platform-manager-head {
  margin-bottom: 30px;
}

.manager-head-icon {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  background: #f29500;
  color: white;
  text-align: center;
  font-size: 35px;
  vertical-align: middle;
}

.manager-head-content {
  padding-left: 10px;
  font-size: 18px;
}

.platform-manager-body {
  font-size: 18px;
  line-height: 1.8;
}
.platform-manager-body p + p {
  margin-top: 20px;
}
.platform-manager-body strong {
  display: block;
  font-weight: 500;
}
