@charset "utf-8";

/* 显示与隐藏 */
.block_pc {
  display: inline-block;
  width: 100%;
}
/* 容器样式 */
.dropdown {
  position: relative;
  display: inline-block;
  /* margin: 50px; */
}

/* 触发按钮 */
.trigger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  /* padding: 8px;
  transition: transform 0.2s; */
}

/* 箭头图标 */
.arrow-icon {
  width: auto;
  /* display: inline-block;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #666; */
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

/* 展开时箭头旋转 */
.trigger-btn.active .arrow-icon {
  transform: rotate(180deg);
  /* border-top-color: #2196F3; */
}

/* 下拉菜单容器 */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

/* 下拉菜单顶部三角 */
.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}
.dropdown-menu a{
  width: 100%;
  display: block;
  text-align: center;
}
/* 显示状态 */
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}
.trigger-btn span{
  font-size: 16px;margin: 0 6px;
}
/* 菜单项样式 */
.menu-item {
  padding: 10px 16px;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-item:first-child {
  border-radius: 6px 6px 0 0;
}

.menu-item:last-child {
  border-radius: 0 0 6px 6px;
}

.menu-item:hover {
  background: #f5f5f5;
}

.line-camp2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;

}

.line-camp1 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-break: break-all;

}

.block_sj {
  display: none;
  width: 100%;
}
@keyframes scaleAnim {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.sub_banner {
  position: relative;
  overflow: hidden;
}

.sub_banner>img {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: scaleAnim 5s ease forwards;
}

.sub_banner .pc_img {
  display: block;
}

.sub_banner .m_img {
  display: none;
}

/* input的处理 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* 共同的flex布局 */
.flex-b {
  display: flex;
  align-items: baseline;
}

.flex-c {
  display: flex;
  flex-direction: column;
}

.flex-c-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-j {
  display: flex;
  justify-content: space-between;
}

.flex-j-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 字体加粗 */
.bold {
  font-weight: bold;
}

/* CSS Document */
body {
  color: #333;
  font-size: 12px;
  font-family: "Microsoft Yahei";
  margin: 0 auto;
  box-sizing: border-box;
}

body * {
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}

/* 重置 */

div,
form,
p,
i,
img,
ul,
li,
ol,
dl,
dt,
dd,
table,
tr,
td,
th,
fieldset,
label,
legend,
select,
button,
input {
  margin: 0;
  padding: 0;
}

/* 标题样式 */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  /* font-size: 12px; */
  font-weight: normal;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  margin: 0;
}

/* 列表样式 */

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
}

/* 图片样式 */

img,
a img {
  border: 0px;
  padding: 0px;
  margin: 0px;
}

/* 链接样式 */
a {
  color: #333;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

/*公共导航nav*/

.head_nav {
  /* width: 100%; */
  position: fixed;
  top: 33px;
  left: 150px;
  right: 150px;
  z-index: 25;
  height: 88px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.07);
  border-radius: 10px 10px 10px 10px;
}

.fix_nav {
  top: 0px;
  left: 0px;
  right: 0;
  border-radius: 0;
   transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
}

.fix_nav .menu_main li:hover .tb_sub {
  top: 78px;
}

.fix_nav_h {
  height: 78px;
}

.nav_pc {
  display: inline-block;
   transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
}

.nav_mobile {
  display: none;
}

/* 安全区域 */
.safe_width {
  max-width: 1620px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.safe_width1 {
  max-width: 1620px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

/* 顶部导航 */
.menu_nav {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 30px;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}

.menu_navb {
  height: 78px;
}

/* logo */
.nav_logo {
  display: inline-block;
}

.nav_logo img {
  width: auto;
  height: auto;
}

/*公共nav*/
.head_nav.tm_nav {
  background: transparent;
  box-shadow: none;
}

.logo_b {
  display: inline-block;
}

.menu_main {
  width: auto;
  margin: 0;
  height: 88px;
  padding: 0;
  display: flex;
  justify-content: left;
  align-items: center;
}

.menu_mainb {
  height: 78px;
}

.menu_main li.main_li {
  margin: 0 0px;
  padding: 0px 25px;
  box-sizing: border-box;
  line-height: 88px;
  position: relative;
}

.menu_mainb li.main_li {
  line-height: 78px;
}

.menu_main li.main_li .main_a {
  font-size: 16px;
  text-align: center;
  color: #070707;
  display: inline-block;
  height: 88px;
  letter-spacing: 0.5px;
  line-height: 88px;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.menu_mainb li.main_li .main_a {
  height: 78px;
  line-height: 78px;
}

.menu_main li.main_li .main_a:focus {
  text-decoration: none;
}

.menu_main li.main_li.active .main_a {
  color: #27883c;
}

.menu_main li.main_li:hover .main_a {
  color: #27883c;
}

.tb_sub {
  height: 0;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 14;
  padding: 0;
  list-style: none;
  width: 100%;
  background: #27883c;
  box-shadow: 0 6px 14px rgba(74, 74, 74, 0.15);
}

/* 联系我们 */
.tb_sub_no {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-shadow: none;
}

.menu_main li:hover .tb_sub {
  height: auto;
  padding: 10px 0 10px 0;
  top: 88px;
  opacity: 1;
  overflow: visible;
  /* -webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s; */
}

.menu_main li:hover .tb_sub_no {
  padding: 0;

  /* -webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s; */
}

.tb_sub div {
  width: 100%;
}

.tb_sub .sub_single {
  width: 126px;
  background: #27883c;
  padding: 10px 0 10px 0;
}

.tb_sub div.active_d a {
  color: #fff;
  font-weight: bold;
}

.menu_main li.main_li .tb_sub div a,
.menu_main li.main_li .tb_sub div {
  line-height: 24px;
}
.menu_main li.yu_li {
line-height: 32px;
display: flex;
align-items: center;
}
.tb_sub div a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  text-align: left;
  color: #fff;
  line-height: 24px;
  padding: 8px 0;
  text-align: center;
}

.tb_sub div a:hover,
.tb_sub div a.cur_a,
.tb_sub div a.cur_a:hover {
  color: #fff;
}

/*锚点*/
/* .md_con {
  position: relative;
} */

.dw_mark {
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
  opacity: 0;
}

/*滚动条样式*/
/*滚动条样式*/
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background: rgba(25, 93, 157, 1);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
}

/*页码*/
.page_con {
  width: 100%;
  text-align: center;
  margin: 10px 0 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_con nav ul {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_con nav ul li {
  border-radius: 0;
}

.page_con nav ul li a {
  border: none;
  background: #fff;
  display: inline-block;
  text-align: center;
  color: #333333;
  font-size: 16px;
  width: 44px;
  line-height: 44px;
  padding: 0 !important;
  border-radius: 0px !important;
  margin: 0 8px;
}

.pagination>li:first-child>a,
.pagination>li:last-child>a {
  width: 120px;
}

.page_con nav ul li:hover a {
  color: #27883C;
  background: #fff;
}

.page_con nav ul li.active a {
  color: #fff !important;
  background: #27883C !important;
}

.middle_con {
  width: 100%;
}

/*footer*/
.footer-safe {
  display: flex;
  justify-content: space-between;
  padding-top: 88px;
  padding-bottom: 36px;
}

.footer-address {
  color: #ffffff;
  display: flex;
  margin-top: 66px;
  flex-wrap: wrap;
}

.footer-bei {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.67;
  /* margin-top: 110px; */
}
.footer-bei a{
  color: #fff;
}
.footer-bei a:hover{
  /* color: #27883C; */
}
.address-a {
  margin-right: 45px;
}

.footer-address img {
  width: auto;
  height: auto;
}

.footer-address div {
  font-size: 16px;

  line-height: 35px;
}

.footer-address div span {
  font-size: 14px;
  color: #ffffff;
  line-height: 35px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-line {
  width: 1px;

  height: auto;
  background: #ffffff;
  opacity: 0.39;
  margin: 0 15px;
}

.footer-logo {
  width: auto;
  height: auto;
}

@font-face {
  font-family: 'CXingKaiHK'; /* 参考搜索结果中的字体名称:ml-citation{ref="1,6" data="citationList"} */
  src: url('https://your-cdn-domain.com/fonts/CXingKaiHK-Bold.woff2') format('woff2'),
       url('https://your-cdn-domain.com/fonts/CXingKaiHK-Bold.woff') format('woff');

  font-style: normal;
}
.footer-j {
 font-family: 'CXingKaiHK', '华文行楷', sans-serif; /* 后备字体兼容系统预装:ml-citation{ref="5,6" data="citationList"} */

  font-size: 39px;
  color: #ffffff;
  line-height: 57px;
  letter-spacing: 2px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 16px;
}

.footer {
  background: #23863c;
  width: 100%;
}

.m_footer {
  display: none;
}

.footer_middle {
  width: 54%;
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  /* padding: 80px 0 60px 0; */
}

.link_box {
  /* width: calc(100% - 30% - 300px); */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer_s {
  width: 100%;
  margin-top: 26px;
}

.footer_s .bootstrap-select .btn {
  outline: none !important;
  background: transparent !important;
  padding: 16px 26px 16px 18px;
  border: 1px solid #787878;
  border-radius: 0;
  color: #fff !important;
  opacity: 0.8 !important;
}

.footer_s .bootstrap-select .btn.disabled {
  opacity: 0.8 !important;
  background: transparent !important;
}

.footer_s .bootstrap-select .btn.disabled:hover,
.footer_s .bootstrap-select .btn.disabled:focus {
  background: transparent !important;
}

.footer_s .bootstrap-select .dropdown-menu {
  z-index: 2;
  border-radius: 0;
  border-top: none;
  border-color: rgb(236, 236, 236);
  box-shadow: none;
}

.footer_s .bootstrap-select .dropdown-menu li a {
  font-size: 14px;
  color: #888;
  line-height: 36px;
  outline: none !important;
}

.footer_s .bootstrap-select .dropdown-menu li.selected.active a {
  background: #27883C;
  color: #fff;
}

.footer_s .bootstrap-select .dropdown-menu li:hover a {
  background: #27883C;
  color: #fff;
}

.footer_link {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-direction: column;
}

.link_title h5 {
  font-size: 16px;
  color: #fff;
  line-height: 20px;
}

.link_item {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-direction: column;
}

.link_item a {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  opacity: 0.8;
  margin-top: 14px;
  display: inline-block;
}

.link_item a:hover {
  opacity: 1;
}

.ewm_info {
  width: 367px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 46px;
}
.footer_middle:hover .evm-right{
  color: #fff;
}
.evm-right {
  width: 100%;
  text-align: right;

  font-size: 14px;
  color: #ffffff;
  opacity: 0.67;
  margin-top: 83px;
}

.footer_ewm {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
}

.ewm_item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 28px;
  width: calc(50% - 14px);
}

.ewm_item:last-child {
  margin-right: 0;
}

.ewm_item p {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin-top: 6px;
}

.ewm_item img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.footer_tel {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}

.footer_tel p {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  letter-spacing: 0.5px;
}

/*footer*/

/*右侧导航条*/

.fixed-right {
  position: fixed;
  right: 12px;
  bottom: 50%;
  margin-bottom: -120px;
  /* transform: translateY(-50%); */
  z-index: 25;
  width: 60px;
}

.fixed-right .box {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  border-radius: 7px;
  background: #23863c;
  margin-bottom: 4px;
  text-decoration: none;
}

.fixed-right .box:hover::after {
  content: none;
}

.fixed-right .box .h:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #27883c;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -10px;
}

.fixed-right .box .ewm-box:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -10px;
}

.fixed-right .box a {
  display: block;
  width: 35px;
  height: 35px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto auto;
}

.fixed-right .box .hide_div {
  position: absolute;
  right: 100%;
  top: 50%;
  padding-right: 26px;
  transform: translateY(-50%);
  opacity: 1;
  visibility: hidden;
  z-index: 10;
}

.fixed-right .box:hover .hide_div {
  opacity: 1;
  visibility: visible;
}

.fixed-right .box .h {
  position: relative;
  width: 210px;
  background-color: #27883c;
  padding: 20px 0;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.fixed-right .box img {
  display: inline-block;
  width: auto;
  height: auto;
}

.fixed-right .box .h p {
  font-size: 18px;
  line-height: 34px;
  color: #fff;
}

.fixed-right .box.totop {
  background: #27883c;
  border-color: #27883c;
  display: none;
}

.fixed-right .box.totop a {
  background: url(../images/icon04.png) no-repeat center center;
  background-size: 35px auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed-right .box.tel1 a {
  background-image: url(../images/icon01.png);
  background-size: 35px auto;
}

.fixed-right .box.tel2 a {
  background-image: url(../images/icon02.png);
  background-size: 35px auto;
}

.fixed-right .box.tel3 a {
  background-image: url(../images/icon03.png);
  background-size: 35px auto;
}

.fixed-right .box.tel4 a {
  background-image: url(../images/icon04.png);
  background-size: 35px auto;
}

.fixed-right .box.totop a {
  background-image: url(../images/icon04.png);
  background-size: 35px auto;
}

.fixed-right .box:hover {
  background-color: #231714;
}

.bigPic-show {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  width: 100%;
  height: 100%;
  display: none;
}

.bigPic-show div {
  position: absolute;
  background: #fff;
}

.hover_btn:hover {
  webkit-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
  margin-left: 10px;
}

.hover_btn {
  webkit-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
}

.tran_scale {
  overflow: hidden;
}

.tran_scale img {
  webkit-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
}

.tran_scale:hover img {
  webkit-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
  transform: scale(1.04);
}

.page_common {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.page_common a:hover {
  color: #fff;
  background-color: #27883C !important;
  cursor: pointer;
}

.page_f_o,
.page_f_d a {
  background-color: white;
  color: #666666;
  font-size: 14px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  padding: 0 11px;
  margin-right: 10px;
}

.page_f_o:last-child,
.page_f_d a:last-child {
  margin-right: 0;
}

.page_f_o_t,
.page_f_o_t2 {
  padding: 0 17px;
  margin: 0 10px;
}

.page_active {
  background-color: #27883C !important;
  color: white !important;
  border: none !important;
}

.page_f_d {
  display: flex;
}