<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 文字为主 */
/** 混合指令 **/
/* 带图片、标题的模块样式 */
.section {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #F5F6F7;
}

.banner &gt; img {
  display: block;
  width: 100%;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.wrapper &gt; .wrap {
  width: calc((100% - 40px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.wrapper &gt; .wrap &gt; img {
  width: 100%;
}
.wrapper &gt; .wrap &gt; a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  width: 100%;
  padding: 13px 0;
  text-align: center;
  font-size: 24px;
  color: #000;
  font-weight: 400;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper &gt; .wrap:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.wrapper &gt; .wrap:hover a {
  color: #fff;
  background-color: #345AFF;
}</pre></body></html>