input {
  border: none;
  outline: none;
}
input:focus,
select:focus {
  box-shadow: none !important;
}
input[type="radio"]:checked {
  background-color: #3d4b43 !important; /* 选中后的颜色 */
  border-color: #335a45 !important;
}

input[type="checkbox"]:checked {
  background-color: #335a45 !important; /* 选中后的颜色 */
  border-color: #335a45 !important;
}
input::selection {
  background-color: #335a45 !important; /* 选中后的颜色 */
  border-color: #335a45 !important;
}

.color-red {
  color: red;
}

.h-mitem > a,
.jd-core-item,
.jd-core-witem {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.body-header {
  background-color: #335a45;
  height: 255px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.h-bwrap {
  display: flex;
  width: 1400px;
  max-width: 100%;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 4;
  /* cursor: pointer; */
}
.logo-a {
  position: absolute;
  left: 0;
  top: 48px;
}
.logo-a > img {
  width: 170px;
}
.logo-txt {
  position: absolute;
  left: 186px;
  top: 56px;
}
.logo-txtb > img {
  width: 310px;
}
.logo-txts {
  color: #fff;
  font-size: 22px;
}
.h-top-txt {
  position: absolute;
  right: 8px;
  top: 12px;
  color: #fff;
  font-size: 14px;
}
.input-search-wrap {
  position: absolute;
  right: 8px;
  top: 52px;
}
.input-search {
  display: flex;
  /* width: 248px; */
  height: 32px;
  border-radius: 4px 0 0 4px;
}
.input-search .val {
  width: 212px;
  height: 32px;
  border: none;
  background-color: rgba(255, 255, 255, 0.39);
  border-radius: 4px 0 0 4px;
  padding: 0 8px;
  color: #fff;
}
.input-search .val::-webkit-input-placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 0.39;
}
.input-search .input-com {
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-search .input-com .btn {
  width: 32px;
  height: 32px;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 65%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

.h-menu-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #fff;
  bottom: 68px;
}

.h-menu {
  display: flex;
  width: 1400px;
  max-width: 100%;
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 4;
  cursor: pointer;
}

.h-mitem {
  font-size: 25px;
  color: #fff;
  flex: 1;
  text-align: center;
  height: 60px;
  line-height: 60px;
}

.h-mitem.h-active,
.h-mitem:hover {
  font-weight: bold;
}

.h-mitem > a {
  position: relative;
  color: #fff;
  opacity: 0.8;
}
.h-mitem.h-active > a {
  opacity: 1;
}
.h-mitem > a:hover {
  text-decoration: none;
}
.h-mitem.h-active > a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #f9e7a4;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

/** mainer css start **/
.mainer {
  max-width: 1400px;
  width: 95%;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 4;

  padding: 20px 8px 100px 20px;
}

.m-breadcrumb {
  font-weight: 500;
  font-size: 16px;
  color: #818181;
  margin-bottom: 13px;
}
.m-breadcrumb a {
  color: #818181;
}

.ed-mtitle {
  font-weight: bold;
  font-size: 24px;
  padding: 0px 0 20px 0;
}

.m-card {
  display: flex;
  flex-wrap: wrap; /* 允许子项换行 */
  /* 可以添加一些padding, margin等样式来美化布局 */
  justify-content: left;
  padding: 0 0 0 8px;
  margin: 0 0 0 -8px;
  list-style: none;
}
.m-card-item {
  /* 设置flex-basis或width，确保一行最多四个元素 */
  flex: 0 0 calc(25% - 8px); /* 也可以写成 width: 25%; flex-grow: 0; flex-shrink: 0; */
  /* 添加一些内边距、边框等样式来美化每个flex-item */
  box-sizing: border-box; /* 使得padding和border不会增加元素的宽度 */

  margin: 0 8px 16px 0;
  background-color: #f6fcf5;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.m-card-item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.m-card-item .a-linker {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.mc-img {
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.mc-img > img {
  width: 100%;
}

.m-content {
  padding: 16px 20px 20px 20px;
}
.mc-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}
.mc-title a {
  color: #363636;
}
.mc-txt {
  font-size: 14px;
  color: #404040;

  margin-bottom: 4px;
}

.m-card-btn {
  width: 120px;
  height: 36px;
  background-color: #335a45;
  color: #fff;
  text-align: center;
  line-height: 36px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
.m-content .m-card-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}
.m-card-btn a {
  color: #fff;
}
.m-card-btn .a-enroll {
  display: block;
  position: relative;
  z-index: 3;
}
.btn-d {
  background-color: #e8e8e8;
  color: #4b4b4b;
  position: relative;
  z-index: 3;
}

/** mainer css end **、

/** ed-detail css start **/
.ed-detail-wrap {
  padding: 20px 20px 100px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}
.ed-dheader {
  display: flex;
}
.ed-himg {
  width: 350px;
}
.ed-himg > img {
  width: 100%;
  height: 170px;
}
.ed-mc-wrap {
  padding: 0 0 0 32px;
}

.mc-dtable {
  display: flex;
  flex-wrap: wrap;
}

.mc-dtable .mc-txt {
  flex: 0 0 calc(50%);
  margin-bottom: 14px;
  font-size: 16px;
}

.ed-detail-wrap .m-card-btn {
  margin-top: 12px;
}

.ed-detail-line {
  height: 1px;
  width: 100%;
  background-color: #ddd;
  margin-top: 30px;
  margin-bottom: 25px;
}

.ed-dcontent h5 {
  font-size: 18px;
  font-weight: bold;
}
.ed-dcontent p {
  font-size: 16px;
  line-height: 2;
}
/** ed-detail css end **/

/** footer **/
.footer {
  background-color: #335a45;
  height: 350px;
  position: relative;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  padding-bottom: 45px;
}

.f-content {
  width: 1150px;
  max-width: 100%;
  position: absolute;
  top: 48px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 4;
  display: flex;
}

.txt-lf,
.txt-lf a,
.txt-rtd a {
  color: #fff;
}
.txt-lfd {
  font-size: 14px;
  padding: 1px 0;
}
.txt-rt {
  padding-left: 142px;
  position: relative;
  display: flex;
}
.txt-rt::before {
  content: "";
  display: block;
  width: 2px;
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  background-color: #fff;
}

.txt-rtd {
  /* flex: 1; */
  display: flex;
  align-items: center;
}

.txt-rtd-w {
  font-size: 14px;
}
.txt-rtd-w > div {
  padding: 6px 0;
  white-space: nowrap;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.5);
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 12px;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.copyright a {
  color: #fff;
}
.c-span {
  padding-right: 40px;
}

.copyright-content {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.f-qr {
  display: flex;
  padding: 20px 0 0 40px;
}
.f-qrb {
  color: #fff;
  font-size: 14px;
}
.f-qrb img {
  max-width: 80px;
  margin: 0 auto;
  display: block;
}
.f-qrb span {
  display: block;
  /* white-space: nowrap; */
  text-align: center;
}
.f-imgs {
  padding-left: 85px;
}
.f-imgs-dw {
  display: flex;
}

.f-imgs-dwpr48 {
  padding-right: 48px;
}
.f-imgs-dwpr30 {
  padding-right: 30px;
}

.f-imgs-01 > img {
  width: 92px;
}
.f-imgs-02 > img {
  width: 130px;
  height: 68px;
}
.f-imgs-03 > img {
  width: 130px;
  height: 68px;
}
.f-imgs-04 > img {
  width: 130px;
  height: 68px;
}
.modal-header,
.modal-content,
.modal-footer {
  border-radius: 0;
}
.modal-footer {
  border: 0;
}
.sbtn {
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  width: 120px;
  text-align: center;
}
.sbtn-ok {
  background-color: #335a45;
  color: #fff;
}
.sbtn-cancel {
  background-color: #e3e6ed;
  color: #6c6c6c;
}

.zhengce-more {
  text-align: center;
}

.zhengce-more > a {
  color: #fff;
  background-color: #335a45;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 10px;
}
.ed-body {
  width: 410px;
  margin-left: auto;
  margin-right: auto;
}
.content img {
  max-width: 800px !important;
}

/* 首页-政策法规  */
.index-zhengce-out {
  background: url("../images/index-zhengce-bg.png") no-repeat center bottom;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}
.index-zhengce-out .img {
  margin-right: 10px;
  width: 26px;
  height: 24px;
}
.index-zhengce-out .title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  margin-bottom: 40px;
  margin-top: 60px;
}
.index-zhengce-out .title .one {
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-zhengce-out .txt {
  display: flex;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
}
.index-zhengce-out .title .line {
  display: flex;
  position: relative;
  width: 200px;
  height: 0px;
  border: 1px solid rgba(51, 90, 69, 0.3);
}
.index-zhengce-out .title .line::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background-color: #335a45;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.index-zhengce-out .title .line::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background-color: #335a45;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.index-zhengce-out .title .desc {
  font-weight: 500;
  font-size: 14px;
  color: #335a45;
  opacity: 0.3;
}

.index-zhengce-main {
  width: 80%;
}
.index-zzfg-header {
  display: flex;
}
.index-zzfg-title {
  font-family: 'rzzy';
  font-size: 26px;
  color: #335A45;
}
.index-zzfg-tag {
  color: #fff;
  font-size: 16px;
  background-color: #335A45;
  border-radius: 4px;
  padding: 0 20px;
  height: 32px;
  line-height: 31px;
  position: relative;
  top: 1px;
  left: 8px;
}
.index-zzfg-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #335A45;
  padding-bottom: 4px;
  margin-top: 20px;
}
.zzfg-nav-items {
  display: flex;
  font-size: 16px;
}
.zzfg-nav-item {
  margin-right: 20px;
  position: relative;
  cursor: pointer;
}
.zzfg-nav-item.current::before {
  /* border-bottom: 2px solid #335A45; */
  position: absolute;
  height: 2px;
  bottom: -4px;
  left: 0;
  right: 0;
  background-color: #335A45;
  content: "";
  display: block;
}
.zzfg-more {
  color: #335A45;
  font-size: 14px;
}
.index-zzfg-content {
  margin-top: 8px;
}
.zzfg-list-item {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 16px 0;
}
.zzfg-list-item .a-title {
  color: #000;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zzfg-list-item .date {
  color: #928F8D;
  font-size: 16px;
  white-space: nowrap;
}

.futian-logo-common {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 999;
}
.futian-logo-common > img {
  width: 160px;
}