/*
    这个css存储所有常用的、公共的样式，并且以pub_为开头
*/
body {background: #FFF;}
* {margin: 0;padding: 0;border:0;font-family: "Microsoft YaHei UI"}
li {list-style: none;}
/*全局变量*/
:root{
    --textColor:#ff6d60;
    --bodyHeig:calc(100%/ 12);
}
/*居中定位*/
.pub_flexCenter{display: flex;align-items: center;justify-content: center;}
.pub_flexBetween{display: flex;align-items: center;justify-content: space-between;}
.pub_flexLine{display: flex;align-items: center;}
.pub_flexend{flex-direction: row-reverse;}
.pub_pstAbCenter{position: absolute;top:0;right:0;left:0;bottom:0;margin:auto;z-index:10;}
.pub_pstFiCenter{position: fixed;top:0;right:0;left:0;bottom:0;margin:auto;z-index:10;}
/*文本超出*/
.pub_textElip{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.pub_textClip{overflow: hidden;white-space: nowrap;text-overflow: clip;}
.pub_textWord{word-break: break-all;word-wrap: break-word;}
/*pc端高度*/
.pub_hei-xs-1{height:calc(var(--bodyHeig));overflow: hidden;}
.pub_hei-xs-2{height:calc(var(--bodyHeig) * 2);overflow: hidden;}
.pub_hei-xs-3{height:25%;overflow: hidden;}
.pub_hei-xs-4{height:calc(var(--bodyHeig) * 4);overflow: hidden;}
.pub_hei-xs-5{height:calc(var(--bodyHeig) * 5);overflow: hidden;}
.pub_hei-xs-6{height:50%;overflow: hidden;}
.pub_hei-xs-7{height:calc(var(--bodyHeig) * 7);overflow: hidden;}
.pub_hei-xs-8{height:calc(var(--bodyHeig) * 5);overflow: hidden;}
.pub_hei-xs-9{height:75%;overflow: hidden;}
.pub_hei-xs-10{height:calc(var(--bodyHeig) * 10);overflow: hidden;}
.pub_hei-xs-11{height:calc(var(--bodyHeig) * 11);overflow: hidden;}
.pub_hei-xs-12{height:100%;overflow: hidden;}
/*宽度*/
.pub_widthFull{width:100%;}
.publicBody{overflow: auto !important;}