/* 去除常见标签默认的 margin 和 padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 设置网页统一的字体大小、行高、字体系列相关属性 */
body {
  /* font: 16px/1.5 "Microsoft Yahei",
    "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif; */
  font-size: 16px;
  color: #333;
}

/* 去除列表默认样式 */
ul,
ol {
  list-style: none;
}

/* 去除默认的倾斜效果 */
em,
i {
  font-style: normal;
}

/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
}

/* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
img {
  /* width: 100%;
  height: 100%; */
  vertical-align: middle;
}

.article img{
  max-width: 800px;
}

/* 去除input默认样式 */
input {
  border: none;
  outline: none;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

/* css超出部分显示省略号 */
.ellipsis {
  overflow: hidden;
  /* 确保超出容器的内容被裁剪 */
  white-space: nowrap;
  /* 确保文本在一行内显示 */
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
}

/* wrap */
.wrap {
  margin: 0 auto;
  width: 1200px;
}

/* top */
.top {
  width: 100%;
  height: 40px;
  background-color: #565656;
}

.top ul {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  color: #e5e5e5;
  font-size: 15px;
}

.top ul li:nth-of-type(1) {
  margin-right: auto;
}

.top ul li:nth-of-type(3) {
  position: relative;
  top: -1px;
}

.top ul li a {
  color: #e5e5e5;
}


/* top */
/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 140px;
}

.header .logo {
  display: flex;
  align-items: center;

}

.header .logo a {
  display: flex;
  /* justify-content: center; */
     width: 300px;
  height: 100px;
   background-image: url(../images/logo.png); 
 

   font-size: 0; 
}

.header .search {
  display: flex;
}

.header .search input:first-of-type {
  width: 300px;
  height: 35px;
  border: 2px solid #da0006;
  line-height: 35px;
  font-size: 15px;
  color: #666;
  padding-left: 10px;
}

.header .search input:last-of-type {
  width: 70px;
  height: 35px;
  background-color: #da0006;
  line-height: 35px;
  font-size: 15px;
  color: #FFFFFF;
}

/* header */
/* menu */
.menu ul {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.menu ul li a {
  padding: 0 29px;
  border-right: 1px solid #e0e0e0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
}

.menu ul li:first-of-type a {
  padding-left: 0;
}

.menu ul li:last-of-type a {
  border-right: 0;
  padding-right: 0;
}

.menu .active {
  color: #ff3538;
}

/* .menu ul li:first-of-type a, */
.menu ul li a:hover {
  color: #ff3538;
}

/* menu */
/* adv */
.adv {
  margin: 25px auto;
  text-align: center;
}

.adv img {
  width: 100%;
}

/* adv */
/* content */
.content {
  display: flex;
  justify-content: space-between;
  /* height: 650px; */
}

/* left */
.content .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 440px;
}

/* slider轮播图开始 */
.slider {
  position: relative;
  overflow: hidden;
  width: 440px;
  height: 280px;
}

.slider-wrapper li {
  width: 100%;
  height: 280px;
  display: none;
}

.slider-wrapper li.active {
  display: block;
}

.slider-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}

.slider-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px;
}

.slider-footer .toggle {
  position: absolute;
  right: 0;
  top: 5px;
  display: flex;
}

.slider-footer .toggle button {
  margin-right: 12px;
  width: 28px;
  height: 28px;
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.slider-footer .toggle button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-footer p {
  max-width: 80%;
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 400;
}

.slider-footer p:hover {
  color: antiquewhite;
}

.slider-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-indicator li {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  cursor: pointer;
}

.slider-indicator li.active {
  width: 13px;
  height: 13px;
  opacity: 1;
}

/* slider轮播图结束 */

/* lists */
.content .lists ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  width: 440px;
  height: 360px;
}

.content .lists li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 215px;
  height: 170px;
  overflow: hidden;
}

.content .lists li h5 {
  height: 140px;
  overflow: hidden;
}

.content .lists li h5 img {
  transition: all 0.5s;
  width: 100%;
  height: 140px;
}

.content .lists img:hover {
  transform: scale(1.1);
}

.content .lists li p {
  width: 215px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
}

.content .lists a:hover {
  color: #ff3538;
}

/* lists */
/* left */
/* centre */
.content .centre {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 390px;
  overflow: hidden;
}

.content .centre .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content .centre h3 {
  height: 35px;
  line-height: 35px;
  border-bottom: 2px solid #eee;
}

.content .centre h3 a {
  padding-bottom: 6px;
  border-bottom: 2px solid red;
}

.content .centre ul {
  display: flex;
  flex-direction: column;
}

.content .centre ul li {
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
}

.content .centre ul li:first-of-type a {
  font-size: 16px;
  font-weight: bold;
}

.content .centre ul li:last-of-type {
  border-bottom: 0;
}

.content .centre ul li a {
  font-size: 15px;
  color: #222;
}

.content .centre a:hover {
  color: #ff3538;
}

/* centre */
.content .right {
  overflow: hidden;
  width: 330px;
}

.content .right>div {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between;
  height: 650px; */
}

.content .right h3 {
  height: 35px;
  line-height: 35px;
}

.content .right h3 a {
  padding-top: 3px;
  border-top: 2px solid red;
}

.content .right .middle {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 330px;
  height: 220px;
  overflow: hidden;
}

.content .right h5 {
  width: 330px;
  height: 220px;
}

.content .middle img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}

.content .middle h5:hover img {
  transform: scale(1.1);
}

.content .middle p {
  position: absolute;
  width: 330px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 35px;
  line-height: 35px;
  text-align: center;
  padding: 0 5px;
  /* background-color: #000;
  opacity: 0.3;
  color: #fff; */
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.content .middle a {
  color: #fff;
  font-size: 15px;
}

.content .middle a:hover {
  color: #d6d6d6;
}

.content .right ul {
  display: flex;
  flex-direction: column;
}

.content .right ul li {
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
}

.content .right ul li:last-of-type {
  border-bottom: 0;
}

.content .right ul li a {
  font-size: 15px;
  color: #222;
}

/* content */
/* main */
.main {
  margin: 50px auto;
}

.main>div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.main h3 {
  height: 35px;
  line-height: 35px;
}

.main h3 a {
  padding-top: 3px;
  border-top: 2px solid red;
}

.main>ul {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.main ul li {
  width: 230px;
  height: 190px;
  overflow: hidden;
}

.main ul li h5 {
  height: 155px;
  overflow: hidden;
}

.main h5 img {
  transition: all 0.5s;
  width: 100%;
  height: 155px;
}

.main img:hover {
  transform: scale(1.1);
}

.main ul li p {
  width: 230px;
  height: 35px;
  line-height: 35px;
  /* text-align: center; */
  /* background-color: azure; */
  /* background-color: rgba(0, 0, 0, 0.3); */
  overflow: hidden;
}

.main ul li p a {
  font-size: 15px;
}

/* main */

/* box1 */
.box1 {
  display: flex;
  justify-content: space-between;
}

.box1 .left {
  width: 830px;
  overflow: hidden;
}

.box1 .left>div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.box1 h3 {
  height: 35px;
  line-height: 35px;
}

.box1 h3 a {
  padding-top: 3px;
  border-top: 2px solid red;
}

.box1 .left>div:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
}

/* lists */
.box1 .lists ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  width: 440px;
  height: 360px;
}

.box1 .lists li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 215px;
  height: 170px;
  overflow: hidden;
}

.box1 .lists li h5 {
  height: 140px;
  overflow: hidden;
}

.box1 .lists li h5 img {
  transition: all 0.5s;
  width: 100%;
  height: 140px;
}

.box1 .lists img:hover {
  transform: scale(1.1);
}

.box1 .lists li p {
  width: 215px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
}

.box1 .lists a:hover {
  color: #ff3538;
}

/* lists */

.box1 .centre {
  width: 370px;
  overflow: hidden;
}

.box1 .centre ul {
  display: flex;
  flex-direction: column;
}

.box1 .centre ul li {
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
}

.box1 .centre ul li:first-of-type a {
  font-size: 16px;
  font-weight: bold;
}

.box1 .centre ul li:last-of-type {
  border-bottom: 0;
}

.box1 .centre ul li a {
  font-size: 15px;
  color: #222;
}

.box1 .centre a:hover {
  color: #ff3538;
}

/* side */
.side {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  width: 350px;
  /* height: 415px; */
  /* background-color: azure; */
  border: 1px solid #e9e9e9;
}

.side>div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  background-color: azure;
}

/* lists */
.side .list {
  margin-bottom: 10px;
}

.side .list ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-between;
  width: 350px;
  height: 140px;
}

.side .list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 170px;
  height: 140px;
  overflow: hidden;
}

.side .list li h5 {
  height: 110px;
  overflow: hidden;
}

.side .list li h5 img {
  transition: all 0.5s;
  width: 100%;
  height: 110px;
}

.side .list img:hover {
  transform: scale(1.1);
}

.side .list li p {
  width: 170px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
}

.side .list a:hover {
  color: #ff3538;
}

/* lists */

.side .centre {
  overflow: hidden;
}

.side .centre ul {
  display: flex;
  flex-direction: column;
  width: 350px;
}

.side .centre ul li {
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
}

.side .centre ul li:first-of-type a {
  font-size: 16px;
  font-weight: bold;
}

.side .centre ul li:last-of-type {
  border-bottom: 0;
}

.side .centre ul li a {
  font-size: 15px;
  color: #222;
}

.side .centre a:hover {
  color: #ff3538;
}

/* side */
/* box1 */

/* box2 */
.box2 {
  display: flex;
  justify-content: space-between;
  /* gap: 20px; */
  margin-top: 25px;
}

.box2 .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 440px;
  height: 470px;

}


.box2 .left>div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box2 h3 {
  height: 35px;
  line-height: 35px;
}

.box2 h3 a {
  padding-top: 3px;
  border-top: 2px solid red;
}


/* lists */
.box2 .lists ul {
  display: flex;
  justify-content: space-between;
  align-content: space-between;
}

.box2 .lists li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 215px;
  height: 170px;
  overflow: hidden;
}

.box2 .lists li h5 {
  height: 140px;
  overflow: hidden;
}

.box2 .lists li h5 img {
  transition: all 0.5s;
  width: 100%;
  height: 140px;
}

.box2 .lists img:hover {
  transform: scale(1.1);
}

.box2 .lists li p {
  width: 215px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
}

.box2 .lists a:hover {
  color: #ff3538;
}

/* lists */

.box2 .centre {
  overflow: hidden;
}

.box2 .centre ul {
  display: flex;
  flex-direction: column;
  /* text-align: center; */
}

.box2 .centre ul li {
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
}

.box2 .centre ul li:first-of-type a {
  font-size: 16px;
  font-weight: bold;
}

.box2 .centre ul li:last-of-type {
  border-bottom: 0;
}

.box2 .centre ul li a {
  font-size: 15px;
  color: #222;
}

.box2 .centre a:hover {
  color: #ff3538;
}

/* box2 */

/* footer */
.footer {
  margin-top: 25px;
  margin-bottom: 1px;
  padding: 10px 0px;
  border: 1px solid #d8d8d8;
  font-size: 15px;
  text-align: center;
}

.footer ul {
  display: flex;
  justify-content: center;
}

.footer ul li {
  padding: 10px 20px;
}

.footer p {
  line-height: 30px;
}

/* footer */


/* contain */
.contain {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}

.contain .list {
  display: flex;
  flex-direction: column;
  width: 830px;
}

.contain .list h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
}

.contain .list h3 a {
  padding-bottom: 8px;
  border-bottom: 2px solid #ff3538;
}

.contain .list ul.item {
  display: flex;
  flex-direction: column;
}

.contain .list ul.item li {
  display: flex;
  gap: 30px;
  overflow: hidden;
  padding: 25px 0px;
  border-bottom: 1px dotted #c4c4c4;
}

.contain .list ul.item li div:first-of-type img {
  width: 210px;
  height: 160px;
}

.contain .list ul.item li div:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contain .list ul.item li div:last-of-type h5 a {
  font-size: 18px;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
}

.contain .list ul.item li div:last-of-type p {
  font-size: 15px;
  line-height: 25px;
}

.contain .list ul.item li div:last-of-type p a {
  color: red;
}

.contain .hot {
  width: 340px;
}

.contain .hot div:first-of-type {
  margin-bottom: 30px;
}

.contain .hot h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
}

.contain .hot h3 a {
  padding-top: 7px;
  border-top: 2px solid #ff3538;
}

.contain .hot ul {
  display: flex;
  flex-direction: column;
}

.contain .hot ul li {
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
}

.contain .hot ul li:first-of-type a {
  font-size: 15px;
  /* font-weight: bold; */
}

.contain .hot ul li:last-of-type {
  border-bottom: 0;
}

.contain .hot ul li a {
  font-size: 15px;
  color: #222;
}

.contain .hot a:hover {
  color: #ff3538;
}

.contain .middle {
  position: relative;
  width: 340px;
  height: 230px;
  overflow: hidden;
  margin-bottom: 10px;
}

.contain .middle img {
  transition: all 0.5s;
  width: 340px;
  height: 230px;
}

.contain .middle h5:hover img {
  transform: scale(1.1);
}

.contain .middle p {
  position: absolute;
  width: 340px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 35px;
  line-height: 35px;
  text-align: center;
  /* background-color: #000; */
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 5px;
  /* opacity: 0.3; */
  overflow: hidden;
}

.contain .middle a {
  color: #fff;
  font-size: 15px;
}

.contain .middle a:hover {
  color: #d6d6d6;
}

/* contain */
/* pages */

/* .pages ul.page {
  display: flex;
  justify-content: center;
  padding: 30px 0;
} */

/* 
.pages ul.page li {
  padding: 5px;

}

.pages ul.page li a {
  font-size: 16px;
  font-weight: 500;
  padding: 2px 5px;
  border: 1px solid #ddd;
} */
.pages {
  margin: 25px auto;
}

.pages ul.page {
  display: flex;
  /* background: #fff; */
  align-items: center;
  padding: 8px;
  border-radius: 50px;
}

.pages ul.page li {
  /* color: #20b2aa; */
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  margin: 0 3px;
  transition: all 0.3s ease;
}

.pages ul.page li.num {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin: 0 3px;
}

.pages ul.page li.dots {
  font-size: 22px;
  cursor: default;
}

.pages ul.page li.btn {

  padding: 0 20px;
}

.pages ul.page li.prev {
  border-radius: 25px 5px 5px 25px;
}

.pages ul.page li.next {
  border-radius: 5px 25px 25px 5px;
}

.pages ul.page li.active,
.pages ul.page li.num:hover,
.pages ul.page li.btn:hover {
  color: #fff;
  background: #ff3538;
  opacity: 0.7;
}

/* pages */

/* place */
.place {
  line-height: 40px;
  font-size: 15px;
}

/* place */
/* article */
.article .title {
  line-height: 40px;
  font-weight: 600;
  padding: 10px 0;
}

.article>p {
  font-size: 14px;
  line-height: 35px;
  color: #888;
  border-bottom: 1px dashed #ccc;
}

.article .contents {
  margin: 20px 0;
  line-height: 30px;
}

.article p {
  /* text-indent: 2em; */
  margin-bottom: 20px;
}

.contain .info {
  margin: 20px 0;
  padding: 5px;
  line-height: 35px;
  color: #888;
  border: 1px solid #ccc;
}

/* article */

/* lists */
.contain .centre h3 {
  height: 35px;
  line-height: 35px;
  border-bottom: 2px solid #eee;
}

.contain .centre h3 a {
  padding-bottom: 3px;
  border-bottom: 2px solid red;
}

.contain .lists ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-content: space-between;
  margin-top: 20px;
}

.contain .lists li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 260px;
  height: 205px;
  overflow: hidden;
}

.contain .lists li h5 {
  height: 175px;
  overflow: hidden;
}

.contain .lists li h5 img {
  transition: all 0.5s;
  width: 100%;
  height: 175px;
}

.contain .lists img:hover {
  transform: scale(1.1);
}

.contain .lists li p {
  width: 260px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
}

.contain .lists a:hover {
  color: #ff3538;
}

.content .right ul li:last-of-type,
.content .right ul li:first-of-type,
.content .right ul li:nth-last-of-type(2) {
  border-bottom: 0;
}

.content .left .lists {
  margin-top: 10px;
}

.content .right ul li.middle a {
  color: #fff;
  /* padding: 0 5px; */

}

/* lists */
.is_adv {
  margin-top: 15px;
  text-align: right;
  color: #ccc;
  /* padding: 3px; */
  font-size: 14px;
}