@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #f1f1f1;
}

em {
  font-style: normal;
}

a {
  text-decoration: none;
  /* 去除下划线 */
  color: inherit;
  /* 继承父元素的颜色 */
  cursor: pointer;
  /* 修改鼠标指针样式 */
  font-size: 16px;
}

ul {
  list-style: none;
}

input {
  border: none;
  outline: none;
  background: transparent;
}

button {
  border: none;
  outline: none;
  background: transparent;
}

.nav {
  width: 100%;
  height: 90px;
  border-top: solid 1px #eeeeee;
  box-sizing: border-box;
  background-color: #ffffff;
}

.nav > .nav_box {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav > .nav_box > .logo {
  width: 161px;
}

.nav > .nav_box > .nav_text {
  display: flex;
  align-items: center;
}

.nav > .nav_box > .nav_text > a {
  font-size: 29px;
  font-weight: bold;
}

.nav > .nav_box > .nav_text > a:first-child {
  margin-right: 98px;
}

.nav > .nav_box > .nav_text .a_active {
  color: #ff4000;
  position: relative;
}

.nav > .nav_box > .nav_text .a_active::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
  background-color: #ff4000;
}

.search_box {
  max-width: 950px;
  margin: 0 auto;
}

.search_box .search {
  max-width: 950px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: solid 1px #ff4000;
  background-color: #ffffff;
  margin-top: 25px;
}

.search_box .search > .search_box1 {
  width: 140px;
  cursor: pointer;
  height: 100%;
  position: relative;
}

.search_box .search > .search_box1 > div {
  height: 100%;
}

.search_box .search > .search_box1 > div > .search_box1_2 {
  display: none;
  position: absolute;
  top: 59px;
  left: 0;
  height: 50px;
  line-height: 50px;
  width: 140px;
  padding-left: 24px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.search_box .search > .search_box1 > div > .search_box1_2::after {
  height: 1px;
  content: "";
  background-color: transparent;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
}

.search_box .search > .search_box1 > div > .search_box1_1 {
  display: flex;
  align-items: center;
  font-weight: bold;
  height: 100%;
}

.search_box .search > .search_box1 > div > .search_box1_1 > .search_box1_text {
  margin-left: 24px;
}

.search_box .search > .search_box1 > div > .search_box1_1 > .icono-caretDown {
  color: #6c6c6c;
  width: 11px;
  height: 6px;
  transition: transform .2s;
  margin: 0;
  margin-left: 20px;
}

.search_box .search > .search_box1 > div > .search_box1_1 > .icono-caretDown::before {
  width: 8px;
  height: 2px;
}

.search_box .search > .search_box1 > div > .search_box1_1 > .icono-caretDown::after {
  width: 8px;
  height: 2px;
}

.search_box .search > .search_box1:hover > div > .search_box1_1 > .icono-caretDown {
  transform: rotate(270deg);
}

.search_box .search > .search_box1:hover > div > .search_box1_2 {
  display: block;
}

.search_box .search > .search_box2 {
  width: 1px;
  height: 40px;
  background-color: #e1e1e1;
  margin-right: 26px;
}

.search_box .search > .search_box3 {
  flex: 1;
}

.search_box .search > .search_box3 > input {
  width: 100%;
}

.search_box .search > .search_box4 {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #ff6927, #ff4605);
  height: 100%;
  color: #ffffff;
  padding: 0 30px;
  box-sizing: border-box;
  font-size: 18px;
}

.search_box .search > .search_box4 > img {
  margin-right: 14px;
}

.search_box .resou {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.search_box .resou > div {
  margin-right: 37px;
  display: flex;
  align-items: center;
}

.search_box .resou > div > a {
  margin-left: 10px;
  font-weight: bold;
}

.search_box .resou > a {
  margin-right: 37px;
  color: #666666;
}

.search_box .resou > a:last-child {
  margin-right: 0;
}

.mian {
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 35px;
  display: flex;
  align-items: center;
  position: relative;
}

.mian .mian_left {
  width: 250px;
  height: 510px;
  background-color: #ffffff;
  margin-right: 20px;
  padding: 26px 0;
  box-sizing: border-box;
}

.mian .mian_left > .mian_left_title {
  font-size: 21px;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 25px;
  box-sizing: border-box;
  margin-bottom: 18px;
}

.mian .mian_left > .mian_left_title > img {
  margin-right: 17px;
}

.mian .mian_left > .mian_left_item {
  height: 54px;
  cursor: pointer;
  padding-left: 25px;
  box-sizing: border-box;
}

.mian .mian_left > .mian_left_item:hover > .hover_right {
  display: block;
}

.mian .mian_left > .mian_left_item:hover > .hover_right2 {
  display: flex;
}

.mian .mian_left > .mian_left_item > .item_left {
  display: flex;
  align-items: center;
  height: 100%;
}

.mian .mian_left > .mian_left_item > .item_left > .mian_left_item_img {
  width: 27px;
  margin-right: 17px;
}

.mian .mian_left > .mian_left_item > .hover_right2 {
  position: absolute;
  width: 1050px;
  height: 100%;
  background-color: #ffffff;
  display: none;
  top: 0;
  right: 0;
  border: solid 2px #ff4000;
  box-sizing: border-box;
  z-index: 10;
  padding: 27px 30px;
  justify-content: space-between;
}

.mian .mian_left > .mian_left_item > .hover_right2 > div {
  width: 45%;
}

.mian .mian_left > .mian_left_item > .hover_right2 > div > h2 {
  margin-bottom: 10px;
}

.mian .mian_left > .mian_left_item > .hover_right2 > div > .hover_right_item > .hover_right_bom {
  margin-top: 10px;
  margin-bottom: 20px;
}

.mian .mian_left > .mian_left_item > .hover_right2 > div > .hover_right_item > .hover_right_bom > a {
  font-size: 13px;
  color: #555555;
  margin-right: 20px;
  white-space: nowrap;
  /* 防止自动换行 */
  overflow-wrap: normal;
  /* 长单词不会在中间断开 */
}

.mian .mian_left > .mian_left_item > .hover_right2 > div > .hover_right_item > .hover_right_bom > a:hover {
  color: #ff4605;
}

.mian .mian_left > .mian_left_item > .hover_right {
  position: absolute;
  width: 1050px;
  height: 100%;
  background-color: #ffffff;
  display: none;
  top: 0;
  right: 0;
  border: solid 2px #ff4000;
  box-sizing: border-box;
  z-index: 10;
  padding: 27px 30px;
}

.mian .mian_left > .mian_left_item > .hover_right > .hover_right_item > .hover_right_bom {
  margin-top: 10px;
  margin-bottom: 20px;
}

.mian .mian_left > .mian_left_item > .hover_right > .hover_right_item > .hover_right_bom > a {
  font-size: 13px;
  color: #555555;
  margin-right: 20px;
  white-space: nowrap;
  /* 防止自动换行 */
  overflow-wrap: normal;
  /* 长单词不会在中间断开 */
}

.mian .mian_left > .mian_left_item > .hover_right > .hover_right_item > .hover_right_bom > a:hover {
  color: #ff4605;
}

.mian .mian_left > .mian_left_item:hover {
  background-color: #fff3ee;
}

.mian .mian_right {
  width: 1030px;
}

.mian .mian_right > .mian_right_top {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  padding: 0 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mian .mian_right > .mian_right_top > a {
  font-size: 17px;
  font-weight: bold;
}

.mian .mian_right > .mian_right_bom {
  width: 100%;
  height: 440px;
  margin-top: 20px;
}

.mian .mian_right > .mian_right_bom .swiper {
  width: 100%;
  height: 100%;
}

.mian .mian_right > .mian_right_bom .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.mian .mian_right > .mian_right_bom .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.mian .mian_right > .mian_right_bom .swiper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
}

.mian .mian_right > .mian_right_bom .swiper .swiper-slide a img {
  width: 100%;
  height: 100%;
}

.new_zixun {
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 21px 25px 16px 25px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new_zixun > .new_zixun_left {
  width: 760px;
  height: 100%;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top {
  width: 100%;
  height: 50px;
  border-bottom: solid 1px #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top > .new_zixun_left_top_left {
  display: flex;
  align-items: flex-end;
  color: #555555;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top > .new_zixun_left_top_left > .new_zixun_left_top_left_text1 {
  margin-right: 50px;
  cursor: pointer;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top > .new_zixun_left_top_left > .new_zixun_left_top_left_text1:last-child {
  margin-right: 0;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top > .new_zixun_left_top_left > .new_zixun_left_top_left_text2 {
  cursor: pointer;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top > .new_zixun_left_top_left > .active {
  font-size: 21px;
  font-weight: bold;
  color: #000000;
  position: relative;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top > .new_zixun_left_top_left > .active::before {
  content: '';
  position: absolute;
  width: 98px;
  height: 3px;
  background-color: #ff4000;
  bottom: -11.5px;
}

.new_zixun > .new_zixun_left > .new_zixun_left_top > .new_zixun_left_move {
  font-size: 14px;
  color: #666666;
}

.new_zixun > .new_zixun_left > .new_zixun_left_bom {
  width: 100%;
}

.new_zixun > .new_zixun_left > .new_zixun_left_bom > div > .new_zixun_right_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.new_zixun > .new_zixun_left > .new_zixun_left_bom > div > .new_zixun_right_text:hover > .new_zixun_right_text_box > .new_zixun_right_text1 {
  background-color: #ff4000;
}

.new_zixun > .new_zixun_left > .new_zixun_left_bom > div > .new_zixun_right_text .new_zixun_right_text_box {
  display: flex;
  align-items: center;
}

.new_zixun > .new_zixun_left > .new_zixun_left_bom > div > .new_zixun_right_text .new_zixun_right_text_box > .new_zixun_right_text1 {
  width: 6px;
  height: 6px;
  background-color: #ffede7;
  margin-right: 21px;
  border-radius: 50%;
}

.new_zixun > .new_zixun_left > .new_zixun_left_bom > div > .new_zixun_right_text .new_zixun_right_text_box > .new_zixun_right_text2 {
  margin-right: 127px;
  width: 400px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.new_zixun > .new_zixun_left > .new_zixun_left_bom > div > .new_zixun_right_text > .new_zixun_right_text3 {
  font-size: 11px;
  color: #666666;
}

.new_zixun > .new_zixun_right {
  width: 460px;
  height: 100%;
  background: url("../../image/12.png") no-repeat center top;
  padding: 25px 0 24px 0;
  background-size: 100% 356px;
}

.new_zixun > .new_zixun_right > img {
  margin-bottom: 25px;
}

.new_zixun > .new_zixun_right > .scroll-box {
  position: relative;
  height: 248px;
  overflow: hidden;
}

.new_zixun > .new_zixun_right > .scroll-box > .scroll-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.new_zixun > .new_zixun_right > .scroll-box > .scroll-container > .new_zixun_right_item {
  width: 400px;
  height: 76px;
  background-color: #ffffff;
  margin-top: 10px;
  padding: 16px 25px;
  cursor: pointer;
}

.new_zixun > .new_zixun_right > .scroll-box > .scroll-container > .new_zixun_right_item:first-child {
  margin-top: 0;
}

.new_zixun > .new_zixun_right > .scroll-box > .scroll-container > .new_zixun_right_item > .new_zixun_right_item_text {
  font-size: 17px;
}

.new_zixun > .new_zixun_right > .scroll-box > .scroll-container > .new_zixun_right_item > .new_zixun_right_item_time {
  font-size: 11px;
  margin-top: 15px;
  color: #666666;
}

.mains {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 20px;
  padding: 15px;
  box-sizing: border-box;
}

.mains > .main_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.mains > .main_header > .tab-ul {
  height: 50px;
  text-align: left;
  width: 100%;
}

.mains > .main_header > .tab-ul > .hit {
  color: #000;
  font-weight: bold;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  position: relative;
}

.mains > .main_header > .tab-ul > .hit::before {
  content: '';
  position: absolute;
  width: 98px;
  height: 3px;
  background-color: #ff4000;
  bottom: -0.5px;
}

.mains .ulii {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 10px;
}

.mains .ulii .li {
  background: #fff;
  width: 290px;
  box-shadow: 0 0 20px #e9edf4;
  border-radius: 5px;
  margin-top: 20px;
  display: block;
  cursor: pointer;
}

.mains .ulii .li:hover .img img {
  transform: scale(1.1);
}

.mains .ulii .img {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.mains .ulii .img img {
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}

.mains .ulii .text {
  padding: 0 10px 10px 10px;
  box-sizing: border-box;
}

.mains .ulii .text .p1 {
  height: 40px;
  text-align: left;
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.5;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mains .ulii .text .p1:hover {
  color: #ff4000;
}

.mains .ulii .text .line {
  width: 100%;
  height: 1px;
  background-color: #efefef;
  margin-top: 5px;
  margin-bottom: 10px;
}

.mains .ulii .text .p2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mains .ulii .text .p2 > .left {
  display: flex;
  align-items: center;
}

.mains .ulii .text .p2 > .left div {
  color: #fff;
  background: #ff4000;
  width: 18px;
  height: 18px;
  margin: 0 5px;
  text-align: center;
  line-height: 18px;
}

.mains .ulii .text .p2 > .left a {
  font-size: 12px;
  color: #999;
}

.mains .ulii .text .p2 > .left span {
  font-size: 12px;
  color: #999;
}

.mains .ulii .text .p2 > .right {
  font-size: 12px;
  color: #999;
}

.hzzh {
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #ffffff;
  padding: 15px;
}

.hzzh > .main_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.hzzh > .main_header > .tab-ul {
  height: 50px;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hzzh > .main_header > .tab-ul > .move {
  font-size: 14px;
  color: #666666;
}

.hzzh > .main_header > .tab-ul > .move:hover {
  color: #ff4000;
}

.hzzh > .main_header > .tab-ul > .hit {
  color: #000;
  font-weight: bold;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  position: relative;
}

.hzzh > .main_header > .tab-ul > .hit::before {
  content: '';
  position: absolute;
  width: 98px;
  height: 3px;
  background-color: #ff4000;
  bottom: -0.5px;
}

.hzzh > .hzzh_bom > .mySwipers {
  margin-top: 30px;
  height: 284px;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide {
  display: flex;
  align-items: center;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item {
  width: 295px;
  background-color: #ffffff;
  box-shadow: 0 0 20px #e9edf4;
  margin-right: 25px;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item:last-child {
  margin-right: 0;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item:hover .hzzh_item_img img {
  transform: scale(1.1);
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item > .hzzh_item_img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item > .hzzh_item_img > img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item > .hzzh_item_title_box {
  padding: 15px 28px 12px 15px;
  display: flex;
  flex-direction: column;
  height: 94px;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item > .hzzh_item_title_box > .hzzh_item_title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item > .hzzh_item_title_box > .hzzh_item_mian {
  flex: 1;
}

.hzzh > .hzzh_bom > .mySwipers > .swiper-wrapper > .swiper-slide > .hzzh_item > .hzzh_item_title_box > .hzzh_item_time {
  font-size: 14px;
  color: #666666;
}

.hzzh > .hzzh_bom > .mySwipers .swiper-horizontal > .swiper-pagination-bullets,
.hzzh > .hzzh_bom > .mySwipers .swiper-pagination-bullets.swiper-pagination-horizontal,
.hzzh > .hzzh_bom > .mySwipers .swiper-pagination-custom,
.hzzh > .hzzh_bom > .mySwipers .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 0px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.hzzh > .hzzh_bom > .mySwipers .swiper-pagination-bullet {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #ffede7;
}

.hzzh > .hzzh_bom > .mySwipers .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #ff4000;
}

.yqlink {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 20px;
  padding: 15px;
  box-sizing: border-box;
}

.yqlink > .main_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.yqlink > .main_header > .tab-ul {
  height: 50px;
  text-align: left;
  width: 100%;
}

.yqlink > .main_header > .tab-ul > .hit {
  color: #000;
  font-weight: bold;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  position: relative;
}

.yqlink > .main_header > .tab-ul > .hit::before {
  content: '';
  position: absolute;
  width: 98px;
  height: 3px;
  background-color: #ff4000;
  bottom: -0.5px;
}

.yqlink > .yqlink_bom {
  margin-top: 30px;
}

.yqlink > .yqlink_bom > a {
  color: #888888;
  margin-right: 62px;
}
