/*引入字体*/
@font-face {
    font-family: 'SourceHanSansCN-Bold';
    src: url('../fonts/SourceHanSansCN-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'SourceHanSansCN-Light';
    src: url('../fonts/SourceHanSansCN-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'SourceHanSansCN-Heavy';
    src: url('../fonts/SourceHanSansCN-Heavy.woff2') format('woff2');
}
/*
 * 禁用用户选择文本功能
 *
 * 该样式规则通过设置user-select属性为none，禁止用户在页面上选择和复制文本内容。
 * 为了兼容不同的浏览器内核，分别设置了对应的私有前缀属性：
 * -webkit-user-select: 针对WebKit内核浏览器（Chrome、Opera、Safari）
 * -moz-user-select: 针对Mozilla Firefox浏览器
 * -ms-user-select: 针对Microsoft Internet Explorer和Edge浏览器
 * user-select: 标准语法，用于支持该属性的现代浏览器
 */
/* Webkit浏览器隐藏滚动条 */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
body {
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;    /* Internet Explorer/Edge */
    user-select: none;        /* Standard syntax */
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    overscroll-behavior: none;

}
/* 全局基础样式 */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: scroll;
    font-family: "SourceHanSansCN-Bold";
    font-weight: 500;
    font-size: 16px;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    margin:0;
    padding:0;
}
li{
    list-style: none;
}
p,span{
    padding: 0;
    margin: 0;
}
.Yahei{font-family: "Microsoft Yahei";}
.SourceHanBold{font-family: "SourceHanSansCN-Bold";}
.SourceHanMedium{font-family: "SourceHanSansCN-Medium";}
.width100{width: 100%;}
.width50{width: 50%;}
.height100{height: 100%;}
.marginTop10{margin-top: 10px;}
.marginTop20{margin-top: 20px;}
.marginTop30{margin-top: 30px;}
.marginTop50{margin-top: 50px;}
.marginTop60{margin-top: 60px;}
.marginTop80{margin-top: 80px;}
.marginTop90{margin-top: 90px;}
.marginBottom80{margin-bottom: 80px;}
.font14{font-size: 14px;}
.font18{font-size: 18px;}
.font19{font-size: 19px;}
.font20{font-size: 20px;}
.font21{font-size: 21px;}
.font22{font-size: 22px;}
.font23{font-size: 23px;}
.font24{font-size: 24px;}
.font25{font-size: 25px;}
.font26{font-size: 26px;}
.font29{font-size: 29px;}
.font30{font-size: 30px;}
.font36{font-size: 36px;}
.font45{font-size: 45px;}
.font46{font-size: 46px;}
.font60{font-size: 60px;}
.font300{font-weight: 300;}
.font400{font-weight: 400;}
.font500{font-weight: 500;}
.font600{font-weight: 600;}
.fontBold{font-weight: bold;}
.relative{position: relative;}
.textCenter{text-align: center;}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between{
    display: flex;
    justify-content: space-between;
}
.flex-around{
    display: flex;
    justify-content: space-around;
}
.flex-left{
    display: flex;
    align-items: center;
}
.textRow1{
    white-space: nowrap;        /* 强制文本在一行内显示 */
    overflow: hidden;           /* 隐藏超出容器的内容 */
    text-overflow: ellipsis;    /* 超出部分用省略号表示 */
    display: inline-block;
}
.textRow2{
    display: -webkit-box;           /* 使用弹性盒子布局 */
    -webkit-line-clamp: 2;          /* 限制显示2行 */
    -webkit-box-orient: vertical;   /* 设置垂直排列 */
    overflow: hidden;               /* 隐藏溢出内容 */
    text-overflow: ellipsis;
}
.textRow4{
    display: -webkit-box;           /* 使用弹性盒子布局 */
    -webkit-line-clamp: 4;          /* 限制显示2行 */
    -webkit-box-orient: vertical;   /* 设置垂直排列 */
    overflow: hidden;               /* 隐藏溢出内容 */
    text-overflow: ellipsis;
}
.textRow5{
    display: -webkit-box;           /* 使用弹性盒子布局 */
    -webkit-line-clamp: 5;          /* 限制显示2行 */
    -webkit-box-orient: vertical;   /* 设置垂直排列 */
    overflow: hidden;               /* 隐藏溢出内容 */
    text-overflow: ellipsis;
}
.line1{
    height: 1px;
    margin: 3px 20px;
    background-color: #ffffff;
}
/*底部*/
.foot{
    height: 360px;
    padding-top: 40px;
    background: #014EA4;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.foot a{
    color: #ffffff;
}
.footLink{
    display: flex;
    padding: 0 230px;
}
.friendLink,.links a{
    line-height: 40px;
}
.friendLink::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    top: calc(2.5rem + 5px);
    background-color: #ffffff;
}
.links{
    margin-left: 100px;
}
.secondLinks a:not(:first-child){
    margin-left: 70px;
}
.footBeian{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}
.footBeian a{
    margin: 2px;
    padding: 0 20px;
}
.ab::before{
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("../images/footImage/gaba.png");
    position: absolute;
    margin-left: -20px;
}
.jbzx{
    margin-top: 5px;
}
.jbzx img{
    width: 236px;
    height: 33px;
    margin-top: 5px;
}
.footCopyright{
    padding: 15px 230px;
    border-top: 1px solid #ffffff;
    text-align: left;
    font-size: 15px;
}