@charset "UTF-8";
/**
* 20250611嘉兴产权集中采购服务平台建设项目
* date:2025-6-24
* author: sxw;
 */
.contact-box {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.contact-item {
  height: 122px;
  padding: 26px 24px;
  box-sizing: border-box;
  border: 1px solid #fff;
  box-shadow: 0px 1px 4px 0px #f6f6f6;
  position: relative;
  overflow: hidden;
}
.contact-item:nth-child(1) {
  background: url("../images/contact_ico1.png") no-repeat right bottom, linear-gradient(90deg, #ebf0ff 41.51%, rgba(255, 255, 255, 0.55) 91.78%);
}
.contact-item:nth-child(2) {
  background: url("../images/contact_ico2.png") no-repeat right bottom, linear-gradient(90deg, #ebf0ff 41.51%, rgba(255, 255, 255, 0.55) 91.78%);
}
.contact-item .name {
  line-height: 30px;
  padding-left: 32px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-item .name.tel {
  background: url("../images/tel.png") no-repeat left center;
}
.contact-item .content {
  color: #0059e7;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.contact-item .content > span {
  margin-right: 24px;
}
.contact-item:after {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  background: linear-gradient(203deg, rgba(163, 206, 253, 0.5) 13.47%, rgba(255, 255, 255, 0.5) 85.06%);
  border: 1px solid #fff;
  backdrop-filter: blur(7px);
  right: -62px;
  bottom: -62px;
  transform: rotate(45deg);
}