.flex-reverse{
  flex-direction: row-reverse;
}
.d-flex{
  display: flex;
}
@media screen and (min-width:768px){
    body * {
        box-sizing: border-box;
        flex-shrink: 0;
      }
      body {
        font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
        margin: 0;
      }
      button {
        margin: 0;
        padding: 0;
        border: 1px solid transparent;
        outline: none;
        background-color: transparent;
      }
      button:active {
        opacity: 0.6;
      }
      .flex-col {
        display: flex;
        flex-direction: column;
      }
      .flex-row {
        display: flex;
        flex-direction: row;
      }
      .justify-start {
        display: flex;
        justify-content: flex-start;
      }
      .justify-center {
        display: flex;
        justify-content: center;
      }
      .justify-end {
        display: flex;
        justify-content: flex-end;
      }
      .justify-evenly {
        display: flex;
        justify-content: space-evenly;
      }
      .justify-around {
        display: flex;
        justify-content: space-around;
      }
      .justify-between {
        display: flex;
        justify-content: space-between;
      }
      .align-start {
        display: flex;
        align-items: flex-start;
      }
      .align-center {
        display: flex;
        align-items: center;
      }
      .align-end {
        display: flex;
        align-items: flex-end;
      }
      .flex-wrap{
        flex-wrap: wrap;
      }
      .flex-full{
        flex: 1;
      }
      
      .page {
        background-color: rgba(247, 251, 255, 1);
        position: relative;
        width: 1920px;
        margin: 0 auto;
      }
      
      a{
        color: inherit;
        text-decoration: none;
      }
      
      .main-title-wrap .title{
        display: inline-block;
        font-size: 42px;
        position: relative;
        font-family: PingFangSC-Semibold;
        font-weight: 600;
      }
      .main-title-wrap .title .line{
        width: 100%;
        height: 6px;
        background: linear-gradient( 90deg, #075DE1 0%, #2F7EFB 100%);
        border-radius: 3px;
        opacity: 0.3;
        margin-top: 5px;
      }
      .main-title-wrap .title .circle{
        width: 10px;
        height: 10px;
        background: rgba(8, 94, 225, 1);
        border-radius: 50%;
        position: absolute;
        bottom: -2px;
        left: 25px;
      }
      .main-title-wrap .more{
        min-width: 90px;
        height: 30px;
        background: #FFF;
        border-radius: 4px;
        text-align: center;
        line-height: 30px;
        color: rgba(7, 94, 225, 1);
      }
      .main-title-wrap .more:hover{
        background: #EAF2FF;
      }
}
@media screen and (max-width:768px){
    body * {
        box-sizing: border-box;
        flex-shrink: 0;
      }
      body {
        font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
        margin: 0;
      }
      button {
        margin: 0;
        padding: 0;
        border: 1px solid transparent;
        outline: none;
        background-color: transparent;
      }
      button:active {
        opacity: 0.6;
      }
      .flex-col {
        display: flex;
        flex-direction: column;
      }
      .flex-row {
        /* display: flex;
        flex-direction: row; */
      }
      .justify-start {
        display: flex;
        justify-content: flex-start;
      }
      .justify-center {
        display: flex;
        justify-content: center;
      }
      .justify-end {
        display: flex;
        justify-content: flex-end;
      }
      .justify-evenly {
        display: flex;
        justify-content: space-evenly;
      }
      .justify-around {
        display: flex;
        justify-content: space-around;
      }
      .justify-between {
        display: flex;
        justify-content: space-between;
      }
      .align-start {
        display: flex;
        align-items: flex-start;
      }
      .align-center {
        display: flex;
        align-items: center;
      }
      .align-end {
        display: flex;
        align-items: flex-end;
      }
      .flex-wrap{
        flex-wrap: wrap;
      }
      .flex-full{
        flex: 1;
      }
      
      .page {
        background-color: rgba(247, 251, 255, 1);
        position: relative;
        width: 100%;
        margin: 0 auto;
      }
      
      a{
        color: inherit;
        text-decoration: none;
      }
      .main-title-wrap{
        display: flex;
        justify-content: space-between;
        padding: 0 2rem;
        /* align-items: center; */
        width: 100%;
    }
      .main-title-wrap .title{
        display: inline-block;
        font-size: 1.5rem;
        position: relative;
        font-family: PingFangSC-Semibold;
        font-weight: 600;
      }
      .main-title-wrap .title .line{
        width: 100%;
        height: 6px;
        background: linear-gradient( 90deg, #075DE1 0%, #2F7EFB 100%);
        border-radius: 3px;
        opacity: 0.3;
        margin-top: 5px;
      }
      .main-title-wrap .title .circle{
        width: 10px;
        height: 10px;
        background: rgba(8, 94, 225, 1);
        border-radius: 50%;
        position: absolute;
        bottom: -2px;
        left: 25px;
      }
      .main-title-wrap .more{
        min-width: 90px;
        height: 30px;
        background: #FFF;
        border-radius: 4px;
        text-align: center;
        line-height: 30px;
        color: rgba(7, 94, 225, 1);
      }
      .main-title-wrap .more:hover{
        background: #EAF2FF;
      }
}

