a,a:hover,a:visited,a:focus{
    color: rgba(0, 0, 0, 0.85);
}

.btn-red {
    height: 48px;
    font-size: 18px;
    border-radius: 6px;
    border: none;
}

/* 小于等于800时  移动端 */
@media screen and (max-width: 799px) {
    .btn-red {
        height: 28px;
        font-size: 12px;
        border-radius: 4px;
        
    }
    a > .btn-red{
        pointer-events: none;
        /* 处理ios移动端点击两次的问题 */
    }

}

/*这一句是用来解决在安卓上的点击出现篮框问题*/
/* body{ -webkit-tap-highlight-color:rgba(0,0,0,0); } */

/* a{
    cursor: pointer;
} */
/*下面是解决ios上去除微信点击蓝色边框 */
/* a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0); 
} */
.mt4{margin-top: 4px;}
.mt8{margin-top: 8px;}
.ml10{ margin-left: 10px; }
.mt10{margin-top: 10px;}
.mb10{ margin-bottom: 10px; }
.mb16{ margin-bottom: 16px; }
.mr20{ margin-right: 20px; }
.mb20{ margin-bottom: 20px; }
.mt24{margin-top: 24px;}
.mt40{margin-top: 40px;}
.px40{
    padding-left: 40px;
    padding-right: 40px;
}
.mb40{ margin-bottom: 40px; }
.py40{padding-top: 40px;padding-bottom: 40px;}
.py120{padding-top: 120px;padding-bottom: 120px;}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
 
.animation-fadeOut {
  animation: fadeOut 0.5s 1s forwards; /* 动画名称，持续时间，保持动画结束状态 */
  
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.m0_auto{
    margin: 0 auto;
}
.flex-warp{
    flex-wrap: wrap;
}
.position-center{
    position: relative;
}
.absolute-center{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);

}
.w-full{
    width: 100%;
}
.background272554to0B275A {
  background: linear-gradient(319deg, #272554 0%, #0B275A 43%, #041942 100%);
}
.background0A2557{
background: #0A2557;
}
