*{
    margin:0;
    padding:0;
    font-family:'Montserrat',sans-serif;
    font-size: 14px;
    border:none;
    outline:none;
}



body {
	font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

li {
    display: list-item;
    unicode-bidi: isolate;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img{
    display:block;
}

iframe{
	border: none; /* 关键代码：去除边框 */
	overflow: hidden; /* 可选：隐藏溢出内容 */
	display: block;
}

.reveal-text {
		opacity:0;
		transform: translateY(100px);
		transition:all 2s ease-out; /* 动画持续0.8秒 */
	}

/* 激活状态：显示且回到原位 */
.reveal-text.active {
	opacity: 1;
	transform: translateY(0);
}

.common-body{
    width:1300px;
}


/*其他整体样式*/
.common-items-center {
    display: flex;
    align-items: center;
}

.common-flex-column {
    display: flex;
    flex-direction: column;
}

.common-center-column{
    display: flex;
    flex-direction: column; /* 竖向排列 */
    align-items: center;
}

.common-space-around {
    display: flex;
    justify-content: space-around;
}

.common-space-between {
    display: flex;
    justify-content: space-between;
}


.common-center-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.common-center-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.common-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common-flex {
    display: flex;
}

.commonImgShow {
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.common-flexw {
    flex: 1;
}

.common-textCenter {
    text-align: center;
}

.common-width {
    width: 100%;
}

.common-hWidth {
    width: 50%;
}

.common-height {
    height: 100%;
}

.common-block {
    display: block;
}

.common-padding {
    padding: 0 24rpx;
    box-sizing: border-box;
}

.common-relatives {
    position: relative;
}

.common-absolute {
    position: absolute;
}

.common-z-one{
	z-index:1;
}
.common-z-tow{
	z-index:2;
}



.common-top {
    top: 0;
}

.common-bottom {
    bottom: 0;
}

.common-left {
    left: 0;
}

.common-right {
    right: 0;
}

.common-paddingBottom {
    padding-bottom: 100rpx;
}

.commonNowrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

::-webkit-scrollbar {
    width:0px;
    height:0px;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    border-radius: 1px;
    background-color: #F0F4FC;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #E5EBF8;
}

