:root {
  --text-color: #1f5ca1; /* 假设这是您的主题色 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.pricing-container {
  margin-top: 30px;
  padding-bottom: 100px;
  border-bottom: 1px solid #f3f3f3;
}
.pricing-container ul li {
  display: block !important;
}

.section h1 {
  text-align: center;
  font-size: 42px;
  margin: 0;
}

.section .text {
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}

.section .row {
  width: 100%;
  margin-top: 70px;
  display: flex;
}

.section .row .default {
  width: 25%;
  height: 420px;
  text-align: center;
  padding: 60px 0;
  border-radius: 10px;
  position: relative;
  background-color: #1f5ca1;
  color: white;
}

.section .row .default .img {
  position: absolute;
  left: 50px;
  top: 0px;
}

.section .row .default .content {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.section .row .default .amount {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 33px;
}

.section .row .default .amount .num {
  margin-right: 10px;
  font-size: 70px;
  display: inline-block;
  margin-bottom: -10px;
}

.section .row .default .amount .span {
  font-size: 30px;
  display: inline-block;
  margin-bottom: 9px;
}

.section .row .default .amount .span .text1 {
  font-size: 12px;
}

.section .row .default ul {
  margin-top: 20px;
  list-style-type: none;
}

.section .row .default ul li {
  line-height: 30px;
  font-size: 15px;
  text-align: center;
}

.section .row .default .button {
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: auto;
  border-radius: 50px;
  font-size: 15px;
  color: #1f5ca1;
  font-weight: bold;
  margin-top: 20px;
  color: white !important;
  border: 2px solid white !important;
  cursor: pointer;
}

.section .row .default1 .img {
  display: block !important;
}

.section .row .col:hover {
  background-color: #1f5ca1;
  color: white;
}

.section .row .col:hover .img {
  display: block !important;
  transform: translateX(-50%) translateY(100px) !important;
}

.section .row .col:hover .button {
  color: white !important;
  border: 2px solid white !important;
}

.section .row .col:hover .segmentation {
  border-bottom: 1px solid #1f5ca1 !important;
}

.section .row .col {
  width: 25%;
  height: 420px;
  text-align: center;
  padding: 60px 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.section .row .col .img {
  display: none;
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%) translateY(0);
  transition: transform 0.4s ease;
}

.section .row .col .content {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.section .row .col .amount {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 33px;
}

.section .row .col .amount .num {
  margin-right: 10px;
  font-size: 70px;
  display: inline-block;
  margin-bottom: -10px;
}

.section .row .col .amount .span {
  font-size: 30px;
  display: inline-block;
  margin-bottom: 9px;
}

.section .row .col .amount .span .text1 {
  font-size: 12px;
}

.section .row .col ul {
  margin-top: 20px;
  list-style-type: none;
}

.section .row .col ul li {
  line-height: 30px;
  font-size: 15px;
  text-align: center;
}

.section .row .col .button {
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 2px solid #1f5ca1;
  margin: auto;
  border-radius: 50px;
  font-size: 15px;
  color: #1f5ca1;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .section .row {
    display: inline-block !important;
  }

  .section .row .col {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .section .row .default {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
