#news {
  width: 90vw;
  display: flex;
  font-family: sans, sans-serif;
  font-weight: lighter;
}
#news>left {
  width: 45vw;
  height: 25vw;
  overflow: hidden;
  border-radius: 0 100px 0 0;
  box-shadow: 0 1px 3px #000;
  flex-shrink: 0;
  animation: scale-in 0.5s;
}
#news>left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  vertical-align: bottom;
}
#news>left:hover > img {
  transform: scale(1.1);
}

#news>right {
  flex-grow: 1;
  position: relative;
  padding-top: 1.6vw;
  animation: fade-in 0.5s;
}
#news>right > img {
  position: absolute;
  left: 1.6vw;
  top: 0;
  width: 12.8vw;
}
#news>right > nav, #more > nav {
  border: 1px solid #543;
  height: 3vw;
  border-radius: 1.6vw;
  display: flex;
  padding: 0 1.6vw;
  margin-left: 16vw;
  justify-content: space-around;
  background-image: linear-gradient(150deg, transparent 0%, transparent 70%, #fff6 100%);
}
#news>right > nav > span, #more > nav > span {
  font-size: 1.4vw;
  text-align: center;
  line-height: 3vw;
  height: 3vw;
  transition: color 0.5s;
}
#news>right > nav > span.active, #more > nav > span.active {
  color: #d74;
  border-bottom: 1px solid #d74;
}
#news>right > nav > span:hover, #more > nav > span:hover {
  color: #d74;
}

#news>right>list {
  font-size: 1.2vw;
  line-height: 1.6vw;
  padding: 1vw 2vw;
  display: flex;
  flex-direction: column;
  height: calc(100% - 4.8vw);
  white-space: nowrap;
  animation: fade-in 0.5s;
}
#news>right>list > div {
  flex-grow: 1;
  display: flex;
  flex-basis: auto;
  color: #ba9;
  border-bottom: 1px solid #443;
  transition: color 0.5s, font-size 0.5s;
  position: relative;
  align-items: center;
}
#news>right>list > div:hover {
  color: #edc;
  font-size: 1.28vw;
}
#news>right>list > div > div {
  height: 1.6vw;
  width: 0px;
  overflow: hidden;
  transition: width 0.5s;
}
#news>right>list > div > div > img {
  height: 1.6vw;
}
#news>right>list > div:hover > div {
  width: 1.6vw;
}
#news>right>list > div > p {
  white-space: nowrap;
  margin: 0;
  padding-left: 0.8vw;
}
#news>right>list > div > time {
  flex-grow: 1;
  text-align: right;
}

#news>right>more {
  position: absolute;
  bottom: -4.8vw;
  line-height: 2.88vw;
  font-size: 1.44vw;
  padding: 0 4vw;
  border: 1px solid #d74;
  border-radius: 1.44vw;
  color: #d74;
  font-family: theme, serif;
}
#news>right>more > img {
  position: absolute;
  height: 1vw;
  top: 1.3vw;
  left: 9vw;
  transition: left 0.5s;
}
#news>right>more:hover > img {
  left: 10.4vw;
}



/* more界面 */
#more {
  height: 100%;
  width: 64vw;
  font-family: sans, sans-serif;
}
#more > img {
  position: absolute;
  width: 12.8vw;
  top: 6vw;
  left: 1.6vw;
}
#more > nav {
  width: 19vw;
  margin-top: 8vw;
}

#more>list {
  width: 100%;
  height: calc(100% - 13vw);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden auto;
  animation: fade-in 0.5s;
  margin-top: 1.6vw;
  font-size: 1.28vw;
}
#more>list > div {
  width: 28.8vw;
  position: relative;
  margin: 0.4vw 0.8vw;
}
#more>list > div > img {
  width: 28.8vw;
  height: 17.6vw;
  object-fit: cover;
  vertical-align: bottom;
  border-radius: 0.8vw;
  box-shadow: 0 0 5px #000;
  transition: box-shadow 0.2s;
}
#more>list > div:hover > img {
  box-shadow: 0 0 10px #edc;
}
#more>list > div > time {
  position: absolute;
  width: calc(100% - 1.6vw);
  line-height: 1.6vw;
  bottom: 4vw;
  left: 0;
  text-align: right;
  padding: 0.8vw;
  background-image: linear-gradient(0deg, #000 0%, transparent 100%);
  border-radius: 0 0 0.8vw 0.8vw;
}
#more>list > div > p {
  margin: 0;
  padding: 0.8vw;
  line-height: 2.4vw;
  transition: color 0.2s;
}
#more>list > div:hover > p {
  color: #d74;
}
#more>list > div > p > en {
  position: absolute;
  bottom: 4.4vw;
  left: 1.2vw;
}


/* 阅读界面 */
#news-reader {
  height: 100%;
  width: 800px;
  overflow: hidden auto;
  user-select: text;
  -webkit-user-select: text;
  scrollbar-width: none;
}
#news-reader::-webkit-scrollbar{width: 0px;}
#news-reader ::selection {
  background-color: #edc;
  color: #333;
}
#news-reader>div {
  padding: 80px 0;
}

#news-reader>div > h1 {
  margin: 0;
  padding: 12px;
  text-align: center;
  font-size: 32px;
}
#news-reader>div > info {
  line-height: 24px;
  font-size: 15px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: #ba9 solid 1px;
  display: block;
}
#news-reader>div > info > span {
  color: #333;
  background-color: #b63;
  padding: 0 8px;
  border-radius: 12px;
}
#news-reader>div > info > time {
  position: absolute;
  right: 0;
}

#news-reader>div>article {
  font-size: 18px;
  padding: 10px;
  font-family: sans, sans-serif;
}
#news-reader>div>article > p {
  margin: 10px 0;
  text-indent: 20px;
}
#news-reader>div>article > img, #news-reader>div>article > video {
  display: block;
  text-align: center;
  max-width: 100%;
  transition: filter 0.2s;
  box-shadow: 0 0 3px #000;
  border-radius: 20px;
  margin: 20px 0;
  cursor: none;
}
#news-reader>div>article > img:hover {
  filter: opacity(0.8);
}




/* 手机 */
@media screen and (orientation: portrait) {
#news {
  flex-direction: column;
  height: 75vh;
}
#news>left {
  width: 100%;
  height: 25vh;
}

#news>right {
  padding-top: 3vh;
}
#news>right > img {
  left: unset;
  top: unset;
  bottom: -6vh;
  right: 0vh;
  width: 15vh;
  filter: opacity(0.5);
}
#news>right > nav, #more > nav {
  height: 5vh;
  border-radius: 2.5vh;
  padding: 0 3vh;
  margin-left: 0;
}
#news>right > nav > span, #more > nav > span {
  font-size: 2vh;
  line-height: 5vh;
  height: 5vh;
}

#news>right>list {
  font-size: 1.6vh;
  line-height: 3vh;
  padding: 1vh 2vh;
  height: 36vh;
}
#news>right>list > div:hover {
  font-size: 1.28vw;
}
#news>right>list > div > div {
  height: 1.6vw;
}
#news>right>list > div > div > img {
  height: 1.6vw;
}
#news>right>list > div:hover > div {
  width: 1.6vw;
}
#news>right>list > div > p {
  padding-left: 0.8vw;
}

#news>right>more {
  bottom: -4vh;
  left: 0;
  line-height: 6vh;
  font-size: 2.5vh;
  padding: 0 8vh;
  border-radius: 3vh;
}
#news>right>more > img {
  height: 2vh;
  top: 2vh;
  left: 18vh;
}
#news>right>more:hover > img {
  left: 12vh;
}



/* more界面 */
#more {
  width: 90%;
}
#more > img {
  width: 10vh;
  top: 3vh;
  left: 25vh;
}
#more > nav {
  width: calc(100% - 6vh);
  margin-top: 10vh;
}

#more>list {
  width: 100%;
  height: calc(100% - 20vh);
  margin-top: 1vh;
  font-size: 2vh;
}
#more>list > div {
  width: 100%;
  margin: 1vh;
}
#more>list > div > img {
  width: 100%;
  height: unset;
  border-radius: 2vh;
}
#more>list > div > time {
  position: absolute;
  width: calc(100% - 2vh);
  line-height: 3vh;
  bottom: 6.5vh;
  padding: 1vh;
  border-radius: 0 0 2vh 2vh;
}
#more>list > div > p {
  padding: 1vh;
  line-height: 5vh;
}
#more>list > div > p > en {
  bottom: 7vh;
  left: 2vh;
}



/* 阅读界面 */
#news-reader {
  height: 100%;
  width: 90%;
}
#news-reader>div {
  padding: 10vh 0;
}

#news-reader>div > h1 {
  padding: 1vh;
  font-size: 3.2vh;
}
#news-reader>div > info {
  line-height: 5vh;
  font-size: 2vh;
  padding-bottom: 10px;
}
#news-reader>div > info > span {
  padding: 0 1.5vh;
  border-radius: 2.5vh;
}

#news-reader>div>article {
  font-size: 2vh;
  padding: 1vh;
}
#news-reader>div>article > p {
  margin: 2vh 0;
  text-indent: 2vh;
}
#news-reader>div>article > img, #news-reader>div>article > video {
  border-radius: 3vh;
  margin: 3vh 0;
}
#news-reader>div>article > img:hover {
  opacity: 0.8;
}
}