

/** 字体颜色 **/

.text-white {
    color: #ffffff;
}

.text-black {
    color: #333333;
}

/** 背景颜色 **/
.bg-white{
    background-color: white;
}



/** 弹性布局 **/

.flex {
    display: flex;
}

.flex-sub {
    flex: 1;
}

.flex-twice {
    flex: 2;
}

.flex-treble {
    flex: 3;
}

.flex-direction {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/** 元素宽高 **/

.wh-100 {
    width: 100%;
    height: 100%;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

/** 鼠标悬浮样式 **/
.pointer {
    cursor: pointer;
}

/** 溢出样式 **/

.hidden {
    overflow: hidden;
}

.hidden-x {
    overflow-x: hidden;
}

.hidden-y {
    overflow-y: hidden;
}

.scroll {
    overflow: scroll;
}

.scroll::-webkit-scrollbar {
    display: none;
}

/** 边框样式 **/

.round {
    border-radius: 5000rpx;
}

.radius-4 {
    border-radius: 4px;
}

.radius-6 {
    border-radius: 6px;
}

.radius-8 {
    border-radius: 8px;
}

.radius-10 {
    border-radius: 10px;
}

.radius-12 {
    border-radius: 12px;
}

.radius-14 {
    border-radius: 14px;
}

.radius-16 {
    border-radius: 16px;
}

.radius-18 {
    border-radius: 18px;
}

.radius-20 {
    border-radius: 20px;
}

/** 文本样式 **/

.text-bold {
    font-weight: bold;
}


.text-center {
    text-align: center;
}

.text-content {
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.font-30 {
    font-size: 30px !important;
}

.font-28 {
    font-size: 28px !important;
}

.font-26 {
    font-size: 26px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-12 {
    font-size: 12px !important;
}

/** 内外边距 **/

.mg-0 {
    margin: 0;
}

.mg-5 {
    margin: 5px;
}

.mg-10 {
    margin: 10px;
}

.mg-15 {
    margin: 15px;
}

.mg-20 {
    margin: 20px;
}

.mg-25 {
    margin: 25px;
}

.mg-30 {
    margin: 30px;
}

.pd-0 {
    padding: 0;
}

.pd-5 {
    padding: 5px;
}

.pd-10 {
    padding: 10px;
}

.pd-15 {
    padding: 15px;
}

.pd-20 {
    padding: 20px;
}

.pd-25 {
    padding: 25px;
}

.pd-30 {
    padding: 30px;
}

.mg-lr-5 {
    margin: 0 5px;
}

.mg-lr-10 {
    margin: 0 10px;
}

.mg-lr-15 {
    margin: 0 15px;
}

.mg-lr-20 {
    margin: 0 20px;
}

.mg-lr-25 {
    margin: 0 25px;
}

.mg-lr-30 {
    margin: 0 30px;
}

.mg-tb-5 {
    margin: 5px 0;
}

.mg-tb-10 {
    margin: 10px 0;
}

.mg-tb-15 {
    margin: 15px 0;
}

.mg-tb-20 {
    margin: 20px 0;
}

.mg-tb-25 {
    margin: 25px 0;
}

.mg-tb-30 {
    margin: 30px 0;
}

.pd-lr-5 {
    padding: 0 5px;
}

.pd-lr-10 {
    margin: 0 10px;
}

.pd-lr-15 {
    padding: 0 15px;
}

.pd-lr-20 {
    padding: 0 20px;
}

.pd-lr-25 {
    padding: 0 25px;
}

.pd-lr-30 {
    padding: 0 30px;
}

.pd-tb-5 {
    padding: 5px 0;
}

.pd-tb-10 {
    padding: 10px 0;
}

.pd-tb-15 {
    padding: 15px 0;
}

.pd-tb-20 {
    padding: 20px 0;
}

.pd-tb-25 {
    padding: 25px 0;
}

.pd-tb-30 {
    padding: 30px 0;
}


.mgl-0 {
    margin-left: 0;
}

.mgl-5 {
    margin-left: 5px;
}

.mgl-10 {
    margin-left: 10px;
}

.mgl-15 {
    margin-left: 15px;
}

.mgl-20 {
    margin-left: 20px;
}

.mgl-25 {
    margin-left: 25px;
}

.mgl-30 {
    margin-left: 30px;
}

.mgr-0 {
    margin-right: 0;
}

.mgr-5 {
    margin-right: 5px;
}

.mgr-10 {
    margin-right: 10px;
}

.mgr-15 {
    margin-right: 15px;
}

.mgr-20 {
    margin-right: 20px;
}

.mgr-25 {
    margin-right: 25px;
}

.mgr-30 {
    margin-right: 30px;
}

.mgt-0 {
    margin-top: 0;
}

.mgt-5 {
    margin-top: 5px;
}

.mgt-10 {
    margin-top: 10px;
}

.mgt-15 {
    margin-top: 15px;
}

.mgt-20 {
    margin-top: 20px;
}

.mgt-25 {
    margin-top: 25px;
}

.mgt-30 {
    margin-top: 30px;
}

.mgb-0 {
    margin-bottom: 0;
}

.mgb-5 {
    margin-bottom: 5px;
}

.mgb-10 {
    margin-bottom: 10px;
}

.mgb-15 {
    margin-bottom: 15px;
}

.mgb-20 {
    margin-bottom: 20px;
}

.mgb-25 {
    margin-bottom: 25px;
}

.mgb-30 {
    margin-bottom: 30px;
}

.pdl-0 {
    padding-left: 0;
}

.pdl-5 {
    padding-left: 5px;
}

.pdl-10 {
    padding-left: 10px;
}

.pdl-15 {
    margin-left: 15px;
}

.pdl-20 {
    padding-left: 20px;
}

.pdl-25 {
    padding-left: 25px;
}

.pdl-30 {
    padding-left: 30px;
}

.pdr-0 {
    padding-right: 0;
}

.pdr-5 {
    padding-right: 5px;
}

.pdr-10 {
    padding-right: 10px;
}

.pdr-15 {
    padding-right: 15px;
}

.pdr-20 {
    padding-right: 20px;
}

.pdr-25 {
    padding-right: 25px;
}

.pdr-30 {
    padding-right: 30px;
}

.pdt-0 {
    padding-top: 0;
}

.pdt-5 {
    padding-top: 5px;
}

.pdt-10 {
    margin-top: 10px;
}

.pdt-15 {
    padding-top: 15px;
}

.pdt-20 {
    padding-top: 20px;
}

.pdt-25 {
    padding-top: 25px;
}

.pdt-30 {
    padding-top: 30px;
}

.pdb-0 {
    padding-bottom: 0;
}

.pdb-5 {
    padding-bottom: 5px;
}

.pdb-10 {
    padding-bottom: 10px;
}

.pdb-15 {
    padding-bottom: 15px;
}

.pdb-20 {
    padding-bottom: 20px;
}

.pdb-25 {
    padding-bottom: 25px;
}

.pdb-30 {
    padding-bottom: 30px;
}

/** 细边框 **/
.border-bottom::after {
    content: '';
    position: absolute;
    background-color: #EFEFEF;
     /* background-color: red; */
    display: block;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    transform: scaleY(.5)
  }
  
  .border-bottom {
    position: relative;
  }