@charset "UTF-8";
/**
 * 宣城市公共资源交易中心-办事指南
 * date: 2023-11-09
 * author: TH;
 */
.main {
  background: #f3f5f8;
}

.content {
  display: flex;
  padding-bottom: 30px;
}

.main-info {
  width: calc(100% - 230px);
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(1, 71, 154, 0.08);
}

.guide-title {
  height: 35px;
  line-height: 35px;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 40px 0 7px 0;
}
.guide-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 11px 30px 11px;
}
.guide-item {
  width: calc(33.33% - 18px);
  margin: 18px 9px 0 9px;
  border-radius: 6px 6px 0px 0px;
  background: #F2F9FF;
  overflow: hidden;
}
.guide-name {
  height: 40px;
  line-height: 40px;
  background: linear-gradient(180deg, #2A87FF 0%, #6CAEFC 100%);
  color: #FFF;
  text-align: center;
  font-size: 18px;
  padding: 0 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.guide-box {
  height: 123px;
  background: url("../images/guide/guide_item_bg.png") right 6px top 49px no-repeat;
  background-color: #F2F9FF;
  padding: 15px;
  box-sizing: border-box;
  overflow: auto;
}
.guide-click {
  position: relative;
  line-height: 20px;
  display: block;
  padding-left: 10px;
  margin-bottom: 10px;
}
.guide-click:hover {
  color: #2A87FF;
}
.guide-click::before {
  position: absolute;
  content: "·";
  width: 10px;
  height: 20px;
  left: 0;
  top: 0;
  line-height: 20px;
  text-align: center;
}