*{
    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;
}

a{
    text-decoration: none;
    display:block;
    cursor:pointer;
}

img{
    display:block;
}

iframe{
    border: none; /* 关键代码：去除边框 */
    overflow: hidden; /* 可选：隐藏溢出内容 */
    display: block;
}

.common-body{
    width:1300px;
}

/*其他整体样式*/
.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-relative{
    position: relative;
}

.common-absolute {
    position: absolute;
}

.common-z-one{
	z-index:1;
}
.common-z-tow{
	z-index:2;
}

.common-top {
    top: 0;
}

.common-bot {
    bottom: 0;
}

.common-left {
    left: 0;
}

.common-rig {
    right: 0;
}

.commonNowrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

input {
    background-color: transparent;
    border: 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-around {
    display: flex;
    justify-content: space-around;
}
.justify-between {
    display: flex;
    justify-content: space-between;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-end {
    display: flex;
    align-items: flex-end;
}


::-webkit-scrollbar {
    width:0px;
    height:0px;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    border-radius: 1px;
    background-color: #F0F4FC;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #E5EBF8;
}

#navBlockTop{
    width: 100%;
    position: fixed;
    left:0;
    top:0;
    z-index:100;
}
#navBlockTop .content-block{
    width:1200px;
    height: 64px;
}
#navBlockTop .list-text{
    padding:0px 25px;
    cursor: pointer;
}
#navBlockTop .Text{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}

#navBlockTop .block-line{
    width: 24px;
    height: 2px;
    background: #367CFF;
    border-radius:10px;
}



