#container {
  margin: 0;
  position: relative;
}
#container nav {
  position: absolute;
  top: 0;
  width: 2%;
  height: 70px;
  max-height: 70px;
  line-height: 70px;
  color: #fff;
  background: rgba(0, 0, 0, 1);
  text-align: center;
  user-select: none;
  cursor: pointer;
}
#container nav.left {
border-right: 1px dotted;
  left: 0;
}
#container nav.right {
	margin-left: 2%;
}

.prev-issue {
  position: absolute;
  top: 0;
  width: 24%; /* calc(0.96 * 0.25) */
  height: 70px;
  max-height: 70px;
  line-height: 70px;
  color: #fff;
  background: rgba(0, 0, 0);
  text-align: center;
  user-select: none;
  cursor: pointer;
  right: 0;
  z-index: 100;
}


#container .list {
  width: 96%;
  margin-left: auto;
  /*height: 60px;
  max-height: 60px;*/
  display: flex;
  overflow-x: hidden;
}
#container .list .item {
  /*width: 400px;*/
  min-width: 300px;
  height: 100%;
  /*background: grey;*/
  margin: 0 5px;
  padding: 0 10px;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center; 
	align-items: center;
}
#container .list .item:nth-child(even) {
  /*background: grey;*/
}

.item:hover>.text {
	/*border-bottom: 5px solid black;*/
	text-decoration: underline;
    -webkit-text-decoration-color: #87b6a7; /* Safari */    
    text-decoration-color: #87b6a7;
}

.item.current-article {
	background-color: #fff040;
}	

#container .image {
    display: inline-block;
    width: 100px;
  	max-height: 60px;
   height: 65px;
	margin-top: 5px;
	overflow: hidden;
	vertical-align: middle;
	/*border-left: 2px dotted black;*/
	/*
    padding: 5px;
	background: url("/20210325001551oe_/https://www.iso.cuhk.edu.hk/english/publications/sustainability/images/panda.jpg") center center no-repeat;
	background-position: center;
    background-size: cover;
	background-color: grey;*/
}
#container .text {
    display: inline-block;
    /*display: inline;*/
    width: calc(100% - 100px);
    /*height: 60px;*/
  	max-height: 60px;
	margin-top: 5px;
	font-family: 'Oswald', sans-serif;
	padding-left: 1em;
	/*padding-right: 1em;*/
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 17px;
	color: #000;
}

.floating #container .item {
	cursor: pointer;
}
