/* 全局通用样式 */
html{
  scroll-behavior: smooth; /* 平滑滚动 */
}
body{
    font:16px/1.5 "微软雅黑";
    color:#000;
}

.layout {
    max-width: 1200px; /* 最大宽度 */
    margin: 0 auto;
  }


.w36{
    width:36%;
}

.w64{
    width:64%;
}


.layout-center{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
  }

  .common-title {
    /* line-height 40 * 1.5= 60  上下 10px  */
    font-size: 40px;
    text-align: center;
  }
  .common-desc {
    /* 16px * 1.5 = 24px;   上下  4px */
    text-align: center;
    margin-top: 6px;
  }

  .text-ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }