.content1280 {
  width: 1310px;
  border: 1px solid;
}
.mainWidth {
  width: 1310px;
}
.mainCenter {
  margin: 0 auto;
}
.minWidth {
  min-width: 1000px;
}
.centerWidth {
  width: 100%;
  margin: 0 auto;
}
/* 字体大小 */
.fontSize14 {
  font-size: 14px;
}
.fontSize16 {
  font-size: 16px;
}
.fontSize18 {
  font-size: 18px;
}
.fontSize20 {
  font-size: 20px;
}
.fontSize22 {
  font-size: 22px;
}
.fontSize24 {
  font-size: 24px;
}
.fontSize28 {
  font-size: 28px;
}
.fontSize34 {
  font-size: 34px;
}
.fontSize38 {
  font-size: 38px;
}
.fontSize40 {
  font-size: 40px;
}

.fontWhite {
  color: #fff;
}
.fontBlue {
  color: #0076DA;
}
.font666666 {
  color: #666666;
}
.font999999 {
  color: #999999;
}
.fontRed {
  color: red;
}
.fontMoccasin {
  color: #daa520;
}
.fontSpringGreen {
  color: #3cb371;
}
.fontCenter {
  text-align: center;
}
.lineHeight30 {
  line-height: 30px;
}
.bold {
  font-weight: bold;
}

/* flex */
.flex{
  display: flex;
}
/* flex居中 */
.flexCC {
  display: flex;
  align-items:center;
  justify-content: center;
}

.flexCC img {
  transition: 0.8s;
}

.flexCC img:hover {
    cursor: pointer;
transform: scale(1.1);
  }


.spaceBetween {
  display: flex;
  justify-content: space-between;
}
.spaceBetween.hoverPointer img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.alignCenter{
	display: flex;
	align-items: center;
}
/*  上下左右定位居中*/
.centerUdlr {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
}
/* margin padding */
.marginTop10 {
  margin-top: 10px;
}
.marginTop20 {
  margin-top: 20px;
}
.marginTop30 {
  margin-top: 30px;
}
.marginTop40 {
  margin-top: 40px;
}
.marginTop50 {
  margin-top: 50px;
}
.marginTop80 {
  margin-top: 80px;
}
.marginLeft10 {
  margin-left: 10px;
}
.marginLeft20 {
  margin-left: 20px;
}
.marginRight10 {
  margin-right: 10px;
}
.marginRight20 {
  margin-right: 20px;
}
.marginBottom10 {
  margin-bottom: 10px;
}
.marginBottom20 {
  margin-bottom: 20px;
}
.marginBottom50 {
  margin-bottom: 50px;
}


.bgWhite {
  background: #fff;
}
.bgBlue {
  background: #0076DA;
}
.padding20 {
  padding: 20px;
}
.paddingContent20 {
  padding: 20px 0px;
}

.hoverStyle {
  cursor: pointer;
}




/* table 样式 */
.articleContent table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.articleContent table td,
.articleContent table th {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 3px 5px;
}
.articleContent table th {
  border-bottom: 2px solid #ccc;
  text-align: center;
}
/* 单行 两行 三行省略 隐藏 */
.singleLineHiding{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.twoLinesHidden{
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  padding:0 8px;
}
.threeLinesHidden{
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* 划过 小手+下划线 */
.hoverUnderline:hover{
  cursor: pointer;
  text-decoration:underline;
}
/* 划过 小手 */
.hoverPointer:hover{
  cursor: pointer;
}
/* 划过 小手蓝色 */
.hoverPointerBlue:hover{
  color: #0076DA;
  cursor: pointer;
}
#znrd .title{
  -webkit-line-clamp:4;
   line-clamp: 4;
   line-height: 1.65;
}
#znrd img{
   object-fit: contain;
}