a {
  text-decoration: none;
}

.card-List {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}

.card-List>* {
  width: calc((100% - 80px)/3);
}

.card-List>*:not(:nth-child(3n)) {
  margin-right: 40px;
}

.card-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 171px;

  border-radius: 12px;
  background: #FFFFFFFF;
  border: 1px solid #E5E5E5FF;
  margin-bottom: 30px;
}

.card-item .title {
  margin-top: 20px;
  color: #666666FF;
  font-size: 18px;
  padding: 0 20px;
  font-weight: 600;
  overflow: hidden;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-item .info {
  color: #999999FF;
  padding: 0 22px;
  font-size: 14px;
  overflow: hidden;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-item .bottom {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #FCF2F2FF 0%, #FFFCFCFF 100%);
  color: #666666FF;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 64px;
}

.card-item .bottom img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  margin-right: 15px;
}

.card-item .bottom span {
  overflow: hidden;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-item:hover {
  box-shadow: 0px 0px 16px 8px #00000014;
}

.card-item:hover .title {
  color: #BD1A2DFF !important;
}

.object-range {
  padding-bottom: 100px;
}

.object-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px;
}

.object-item:hover {
  color: #BD1A2DFF !important;
}

.object-item:hover img {
  transform: scale(1.1);
}

.object-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333FF;
  font-weight: 600;
  font-size: 18px;
}

.active-object {
  color: #BD1A2DFF !important;
}

.object-item .img-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 22px;
  overflow: hidden;
}

.object-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all .4s;

}

.content {
  display: none;
  position: relative;
  border: 1px solid #A6A6A6FF;
  padding: 20px 30px;
  color: #000000FF;
  line-height: 40px;
  font-size: 16px;
  border-radius: 6px;
}

.content .title {
  font-weight: 600 !important;
}

.content .title:not(:first-child) {
  margin-top: 40px;
}



.content .triangle {
  display: none;
  transition: all .4s;
  position: absolute;
  width: fit-content;
  left: 0;
  top: -37px;
  object-fit: fill;
}

.notice-box>.title {
  font-size: 24px;
  color: #333333FF;
  font-weight: 600;
  margin-top: 22px;
  text-align: center;
}

.notice-box> :nth-child(2) {
  font-size: 14px;
  color: #999999FF;
  margin-top: 30px;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.notice-box> :nth-child(2)>*:not(:last-child) {
  margin-right: 2em;
}

.notice-box> :nth-child(3) {
  padding: 20px 10px;
}

.cus-primary-btn {
  cursor: pointer;
  display: inline-block;
  width: 66px;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  background: #BD1A2DFF;
}


.sample-list {
  margin-bottom: 40px;
}

.sample-item {
  cursor: pointer;
  padding: 0 10px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #333333FF;
  border-bottom: 1px solid #e5e5e5;
}

.sample-item:hover {
  color: #BD1A2DFF;
  background-color: #F5F5F5FF;
}

.sample-item .times {
  color: #999999FF !important;
}

.sample-item>:first-child {
  display: flex;
  flex: 1;
  width: 0;
  margin-right: 20px;
  align-items: center;
}

.sample-item>:first-child span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.sample-item img {
  width: 16.5px;
  margin-right: 15px;
}


.policy-list {
  margin-bottom: 40px;
}

.policy-item {
  cursor: pointer;
  padding: 0 10px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #333333FF;
  border-bottom: 1px solid #e5e5e5;
}

.policy-item:hover {
  color: #BD1A2DFF;
  background-color: #F5F5F5FF;
}

.policy-item .times {
  color: #999999FF !important;
}

.policy-item>:first-child {
  display: flex;
  flex: 1;
  width: 0;
  margin-right: 20px;
  align-items: center;
}

.policy-item>:first-child .flag {
  flex-shrink: 0;
  margin-right: 15px;
}

.policy-item>:first-child span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.question-list {
  margin-top: 20px;
}

.question-header {
  display: flex;
  width: 0;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  margin-right: 2em;
  height: 56px;
  color: #333333FF !important;
}

.question-header span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}

.el-collapse-item {
  margin-bottom: 20px;
}

.el-collapse {
  border: none !important;
}

.el-collapse-item__content {
  padding: 15px !important;
  line-height: 34px;
}

.question-list .el-collapse-item__header {
  height: 56px;
  background-color: #F5F5F5FF;
  padding: 0 5px 0 15px;
  border: 1px solid #e5e5e5;
}

.el-collapse-item__wrap {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.question-header .flag-q {
  background-color: #BD1A2DFF;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  margin-right: 15px;
}

.question-content .flag-a {
  background-color: #2A82E4FF;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
  top: 8px;
}

.el-collapse-item:last-child {
  margin-bottom: 20px;
}

.question-content {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}

.question-content> :last-child {
  width: 0;
  flex: 1;
}

.contact-item {
  color: #333333FF;
  margin-bottom: 30px;
  line-height: 60px;
}

.contact-box {
  padding: 40px 0 0 0;
}

.contact-item .title {
  font-size: 24px;
  font-weight: 700;
}

.contact-item .info-item {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.contact-item .info-item img {
  width: 16px;
  margin-right: 10px;
}

.tips-container {
  margin-top: 25px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: #FEF4E6FF;
  font-size: 16px;
  color: #BD1A2DFF;
}

.tips-container span {
  font-weight: 600;
  margin-right: 10px;
}

.flow-bg1 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 70px 0;
}

.flow-bg1 .txt {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 700;
  width: 1200px;
  text-align: center;
}

.flow-bg1> :nth-child(1) {
  margin-bottom: 260px;
}

.flow-bg1>*:not(:nth-child(4n), .flow-bg2) {
  margin-right: 100px;
}

.flow-item {
  width: calc((100% - 300px)*0.25);
}

.flow-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.flow-item> :nth-child(2) {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin: 10px 0 15px 0;
}

.flow-item> :not(:nth-child(2), :nth-child(1)) {
  font-size: 16px;
  color: #555555FF;
  line-height: 1.5em;
}

.point {
  display: flex;
}

.point::before {
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 11px;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  margin-right: 8px;
}

.flow-bg2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: bottom;

}

.flow-item2 {
  width: calc((100% - 300px)/3);
}

.flow-item2 img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.flow-item2> :nth-child(2) {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin: 10px 0 15px 0;
}

.flow-item2> :not(:nth-child(2), :nth-child(1)) {
  font-size: 16px;
  color: #555555FF;
  line-height: 1.5em;
}

.flow2-bg1 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 70px 0;
}

.flow2-bg1 .txt {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 700;
  width: 1200px;
  text-align: center;
}

.flow2-bg1> :nth-child(1) {
  margin-bottom: 260px;
}

.flow2-bg1>*:not(:nth-child(3n), .flow-bg2, .txt) {
  margin-right: 150px;
}

.blod {
  font-weight: 700;
}

.content-box {
  display: none;
}

.search-list {
  padding-bottom: 20px;
}

.search-item {
  margin-top: 10px;
  height: 150px;
  padding: 0 30px;
  border-radius: 8px;
  cursor: pointer;
  border-bottom: 1px solid #E5E5E5FF;
  width: 100%;
}

.search-item:hover {
  box-shadow: 0 0 2px 1px #0000003f;
}

.search-item .header {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-break: break-all;
  color: #333333FF;
  font-weight: 700;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  margin-bottom: 10px;
}

.search-item .txt {
  color: #666666FF;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  line-height: 36px;
  font-size: 14px;
  height: 80px;
  overflow: hidden;
}