* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.iframeBody {
  line-height: normal;
  width: 100%;
}
/* header */
.title {
  padding: 20px 0 10px 0;
  color: black;
}

.center {
  text-align: center;
}
/* sub-header */
.text {
  margin: 10px 0 24px;
  font-size: 16px;
}

/* 价格 */
.suit-container {
  display: flex;
  margin: 20px auto 0;
  gap: 10px;
  min-width: 1100px;
  max-width: 1200px;
}

.suit {
  max-width: 320px;
  box-sizing: content-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.suit:hover {
  border: 2px solid rgb(0, 177, 77);
}

.suit .header {
  position: relative;
  padding: 0 4px;
}

/* .arrow-left {
  display: none;
} */

.suit h3 {
  color: black;
  font-size: 32px;
  font-weight: bold;
  margin: -26px 0 0 0;
  padding: 24px 0 8px 0;
  position: relative;
}

.suit .price {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  color: rgb(0, 177, 77);
  font-size: 22px;
  font-weight: bold;
  padding: 0 0 5px 0;
  position: relative;
  z-index: 1;
}

.suit:hover .price {
  color: white;
}

.suit:hover .price .tag-add {
  color: white;
}
.tag-time-out {
  color: #fff;
  font-size: 12px;
  background-color: rgb(255, 167, 38);
  padding: 0 2px;
  line-height: 20px;
  display: inline-block;
  border-radius: 4px;
}

.suit:hover .arrow-left {
  display: block;
  border-color: transparent transparent rgb(0, 177, 77) transparent;
  border-style: solid;
  border-width: 16px 16px;
  position: absolute;
  margin-top: -42px;
  margin-left: -16px;
}

.suit:hover .arrow-right {
  right: -12px;
  border-color: transparent transparent rgb(0, 177, 77) transparent;
  border-style: solid;
  border-width: 16px 16px;
  position: absolute;
  margin-top: -42px;
  margin-left: -29px;
}

.suit:hover h3 {
  color: white;
  background-color: rgb(0, 177, 77);
}

.suit:hover .arrow {
  position: relative;
  margin-bottom: -36px;
  border-style: solid;
  border-color: rgb(0, 177, 77) transparent transparent transparent;
  border-width: 36px 30px 0px 30px;
  z-index: 0;
}

.suit .text {
  margin: 5px 0;
  line-height: 1.5;
}
.container-title {
  font-weight: bold;
  line-height: 40px;
}
.contact-us {
  margin: 5px;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: bold;
  background: #eee;
  color: black;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.suit:hover .contact-us {
  background: rgb(0, 177, 77);
  color: white;
}

.suit ul {
  margin: 0;
}
.suit .markNum {
  color: #00b14d;
  font-weight: 700;
}
.suit .box-container {
  margin-left: 3%;
}
.box input {
  margin-right: 6px;
  width: 16px;
  height: 16px;
}
.suit li {
  line-height: 32px;
  font-size: 14px;
  margin-left: 10%;
}
.suit .markNotice {
  border: 0;
  padding-right: 0;
}
.markNotice::after {
  content: "";
  display: block;
  clear: both;
}
.markNotice span {
  color: #00b14d;
  float: right;
}
.tag-add {
  border: 1px solid #c2e7b0;
  border-radius: 5px;
  margin-left: 5px;
  padding: 0 2px;
  color: #00b14d;
  background-color: rgba(0, 177, 77, 0.3);
  font-size: 16px;
}

.tag-new {
  border: 1px solid #f5dab1;
  border-radius: 5px;
  padding: 0 2px;
  margin-left: 5px;
  color: rgb(237, 125, 51);
  background-color: rgba(237, 125, 51, 0.3);
  font-size: 16px;
}

.checkbox-list {
  list-style: none;
}
.checkbox-list li {
  display: flex;
  align-items: center;
  line-height: 32px;
}
/* 自定义复选框的样式 */
.styled-checkbox {
  display: block;
  position: relative;
  vertical-align: middle;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.styled-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.styled-checkbox input + .box {
  position: absolute;
  top: 8px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.box-text {
  margin-left: 4px;
}
.styled-checkbox input:checked ~ .box-text {
  color: #00b14d;
}
.styled-checkbox input:checked + .box {
  background-color: #00b14d;
  border-color: #00b14d;
}

.styled-checkbox input:checked + .box:after {
  content: "";
  position: absolute;
  display: block;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media screen and (max-width: 1280px) {
  /* .suit li {
    padding-left: 10%;
  } */

  .suit:hover .arrow {
    border-width: 30px 25px 0 25px;
  }
}

/* 问答 */
.qa-container {
  width: 70%;
  margin: 15px auto;
  background-color: #eef8f1;
  border-radius: 8px;
  padding: 15px;
  line-height: 2;
}

.qa-container .question {
  font-weight: bold;
  color: black;
}

.qa-container .answer {
  color: black;
}

.blank-divider {
  margin: 20px auto;
  width: 90%;
  border: 1px solid #999;
  height: 0;
}

.wa-link {
  color: #409eff;
  cursor: pointer;
}
@media (min-width: 1366px) {
  #saasbox_page_content .container {
    max-width: 1340px;
  }
}

/* 功能介绍 */
.tool-content-box {
  line-height: 20px;
  color: rgba(96, 98, 102, 1);
  font-size: 14px;
  text-align: left;
  margin-top: 60px;
}
.tool-content-box h2 {
  margin-bottom: 10px;
  line-height: 39px;
  color: rgba(16, 16, 16, 1);
  font-size: 28px;
  text-align: center;
}

.tool-content-box p {
  margin-bottom: 25px;
  line-height: 28px;
  color: rgba(16, 16, 16, 1);
  font-size: 20px;
  text-align: center;
}

.tool-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 30px;
}

.tool-list li {
  position: relative;
  width: 300px;
  height: 175px;
  border-radius: 8px;
  border: 3px solid rgba(42, 168, 70, 1);
  background-image: url("https://static-oss-cdn.oss-us-west-1.aliyuncs.com/wadesk/web/payment/images/wadesk.png"); /* 设置背景图像 */
  background-repeat: no-repeat; /* 背景图像不重复 */
  background-position: 260px 8px;
  padding: 12px 12px 0 12px;
}

.tool-list-top {
  display: flex;
  flex-wrap: wrap;
  word-break: break-all;
  word-wrap: break-word;
  margin-bottom: 12px;
}

.tool-list-top .tool-list-logo {
  display: inline-flex;
  width: 52px;
  height: 52px;
  background-color: #2aa846;
  border-radius: 26px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.tool-list-top .tool-list-logo img {
  display: inline;
  width: 36px;
  height: 36px;
  vertical-align: middle;
}
.tool-list-top .tool-list-head span {
  line-height: 20px;
  color: rgba(96, 98, 102, 1);
  font-size: 14px;
  text-align: left;
}
.tool-list-top .tool-list-head h3 {
  height: 30px;
  line-height: 30px;
  color: rgba(48, 49, 51, 1);
  font-size: 24px;
  text-align: left;
  margin: 0;
}

.tool-content {
  line-height: 20px;
  color: rgba(96, 98, 102, 1);
  font-size: 14px;
  text-align: left;
}

.tool-handle-link {
  position: absolute;
  bottom: 6px;
  display: flex;
  justify-content: end;
  width: inherit;
  padding-right: 27px;
  margin-bottom: 0;
}

.tool-handle-link a {
  margin-left: 4px;
}

.tool-handle-link span {
  display: inline-block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  color: rgba(96, 98, 102, 1);
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.tool-handle-link a:last-child span {
  background-color: rgba(42, 168, 70, 1);
  color: #fff;
}
/* 功能介绍 */
