/* public */
body {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

* {
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none; /* 去除默认的下划线 */
    outline: none;	/* 去除旧版浏览器的点击后的外虚线框 */
    color: #000;	/* 去除默认的颜色和点击后变化的颜色 */ 
}

/* font color */

.fc-w {
    color: #fff !important;
}

.fc-b {
    color: #000;
}

.fc-gray {
    color: #999;
}

.fc-blue {
    color: rgb(0, 183, 255);
}

.t-a-c {
    text-align: center;
}

.t-a-s {
    text-align: start;
}
/* backgrund color */
.bgc-blue {
    background-color: rgb(0, 183, 255);
}


.wrap-center {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100% !important;
}


.fl {
    float: left;
}

.fr {
    float: right;
}

.m-auto {
    display: block;
    margin: 0 auto;
}

.ml-1 {
    margin-left: 10px;
}


.mr-1 {
    margin-right: 10px;
}

.mt-1 {
    margin-top: 10px;
}

.mh-1 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mh-2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mw-1 {
    margin-left: 10px;
    margin-right: 10px;
}

.mw-2 {
    margin-left: 20px;
    margin-right: 20px;
}

.row-card {
    width: 100%;
    margin-top: 10px;
}

.clearfix {
    overflow: hidden;
}

.c-p {
    cursor: pointer;
}

.p-r {
    position:relative;
}

.p-a {
    position: absolute;
}

.dis-n {  
    display:none;
}


.pic-fill {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.flex {
    display: flex;
    align-items: center;
}

.align-center {
    align-items: center;
}

.j-b {
    justify-content: space-between;
}

.j-c {
    justify-content: center;
}

.ellipsis {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.redStar-before::before {
   content: "*";
   color: red;
}
.redStar-after::afert{
   content: "*";
   color: red;
}