/*通用部分*/
* {
  margin: 0;
  padding: 0;
}

body {
  /*background-image: url(../images/bgcimage.png);*/
  background-repeat: repeat;
  background-size: contain;
}

/*导航部分*/
/*第一个模块*/
.nav .first {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 40px;
  color: #7e7e7e;
  background-color: #f2f2f2;
  font-size: 17px;
  text-align: center;
  line-height: 40px;
}

.nav .second {
  position: absolute;
  left: 795px;
  display: inline-block;
  width: 100px;
  height: 40px;
  color: #7e7e7e;
  background-color: #f2f2f2;
  font-size: 17px;
  text-align: center;
  line-height: 40px;
}

/*三角形的样式*/
.first-end {
  position: absolute;
  left: 755px;
  display: inline-block;
  height: 0;
  width: 0;
  border: 20px solid transparent;
  border-left: 20px solid #f2f2f2;
  border-bottom: 20px solid #f2f2f2;
}

.second-begin {
  position: absolute;
  left: 755px;
  display: inline-block;
  height: 0;
  width: 0;
  border: 20px solid transparent;
  border-top: 20px solid #f2f2f2;
  border-right: 20px solid #f2f2f2;
}

.second-end {
  position: absolute;
  left: 895px;
  display: inline-block;
  height: 0;
  width: 0;
  border: 20px solid transparent;
  border-left: 20px solid #f2f2f2;
  border-bottom: 20px solid #f2f2f2;
}

/*“更多”（那个链接）的样式*/
.more {
  left: 1050px;
  border-left: 5px solid #f7f7f7;
  padding-left: 378px;
  padding-top: 10px;
  float: left;
  font-size: 16px;
  cursor: pointer;
  font-style: normal;
}

/*高亮的样式*/
/*主要的div以及其中的内容*/
.nav .choice span {
  background-color: #4472c4;
  font-weight: bold;
  color: #ffffff;
}

.nav .choice .first-end {
  border-left: 20px solid #4472c4;
  border-bottom: 20px solid #4472c4;
}

.nav .choice .second-begin {
  border-top: 20px solid #4472c4;
  border-right: 20px solid #4472c4;
}

.nav .choice .second-end {
  border-left: 20px solid #4472c4;
  border-bottom: 20px solid #4472c4;
}

/*导航部分结束*/
/*内容部分：把一个日期与右边的内容作为一个unit*/
.first-content .unit {
  width: 420px;
  position: relative;
  top: 8px;
  margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*左边的日期部分*/
/*背景*/
.first-content .unit .time-block {
  display: inline-block;

background-color: #f8f8f8;
    border-radius: 5px;

}

/*内容*/
.first-content .unit .time {
  float: left;
  height: 64px;
  width: 64px;
  text-align: center;
font-size: 15px;
    padding: 4px;
}

/*上方的日期*/
.first-content .unit .time .date {
font-weight: bolder;
    height: 28px;
    line-height: 23px;
    font-size: 26px;
    color: red;
    border-bottom: 2px solid rgb(0,110,179);
}

/*下方的年份*/
.first-content .unit .time .year {
  height: 25px;
  line-height: 25px;
 
}

/*右边的内容部分*/
.first-content .unit .content {
  display: inline-block;
  margin-left: 20px;
  width: 335px;
  padding: 11px;
  background-color: #f2f2f2;
  border: solid 2px #d7d5ed;
}

.first-content .unit .content>p>b {
  font-weight: 900;
}

.first-content .unit .content>p {
  font-size: 15px;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}

.first-content .unit .content:hover>p {
  color: #4472c4;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}

.first-content .unit .content:hover {
  transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
}

.first-content .unit .content:hover a {
  color: #4472c4;
  transition: all 0.2s ease-in-out;
}

/* -------------------------------------------------------- */
.second-content {
  width: 420px;
  background-color: #f8f8f8;
}

.second-content .unit:hover {
  box-shadow: 0px 35px 77px -17px rgb(0 0 0 / 64%);
  transform: scale(1.02);
  cursor: pointer;
}

.second-content .unit {
  transition: all 0.4s ease-out;
  width: 380px;
  margin: 0 auto;
  height: 126px;
  border-bottom: #f0f0f0 3px solid;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
}

.second-content .unit .time-block {
  display: inline-block;
}

.second-content .unit .time {
  height: 48px;
  width: 50px;
  margin-top: 17px;
  border-top: solid 2px #f8dd81;
  text-align: center;
font-size: 15px;
}

/*上方的日期*/
.second-content .unit .time .date {
  font-weight: bolder;
  height: 23px;
  line-height: 23px;
  color: #333d93;
}

/*下方的年份*/
.second-content .unit .time .year {
  height: 25px;
  line-height: 25px;
  color: white;
  background-color: #b0c4de;
}

.second-content {
  background-color: #f8f8f8;
}

.second-content .unit .content {
  width: 300px;
  display: block;
  margin-left: 25px;
  font-size: 15px;
  line-height: 20px;
  /* float: right; */
  /* height: 48px; */
  display: flex;
  /* justify-content: center; */
  align-items: center;
}


.second-content .unit .content a {
  transition: all 0.2s ease-in-out;
}

.second-content .unit:hover  .content a{
  color: #4472c4;
  font-weight: bolder;
  transition: all 0.2s ease-in-out;
}