.main {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.banner {
  width: 100%;
}
.banner .bannerSwiper {
  width: 100%;
}
.banner .bannerSwiper img {
  width: 100%;
  display: block;
}
.banner .bannerSwiper .btn-prev,
.banner .bannerSwiper .btn-next {
  position: absolute;
  bottom: 180px;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  border: 1px solid #48a038;
  z-index: 2;
  text-align: center;
  color: #48a038;
  background: transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.banner .bannerSwiper .btn-prev span,
.banner .bannerSwiper .btn-next span {
  font-size: 36px;
  display: inline-block;
  transform: rotate(90deg);
  line-height: 44px;
}
.banner .bannerSwiper .btn-prev:hover,
.banner .bannerSwiper .btn-next:hover {
  background: #48a038;
  border-color: #48a038;
  color: #fff;
}
.banner .bannerSwiper .btn-prev {
  right: 154px;
  transform: rotate(-180deg);
}
.banner .bannerSwiper .btn-next {
  right: 100px;
}
.banner .bannerSwiper .swiper-button-disabled {
  cursor: no-drop;
  background: transparent;
  color: #979292;
  border-color: #979292;
}
.banner .bannerSwiper .swiper-button-disabled:hover {
  background: transparent;
  border-color: #979292;
  color: #979292;
}
.banner .bannerSwiper .swiper-pagination {
  bottom: 40px;
  display: none;
}
.banner .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 1;
  position: relative;
  width: 6px;
  height: 6px;
  margin: 0 6px;
}
.banner .bannerSwiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.banner .bannerSwiper .swiper-pagination .swiper-pagination-bullet-active::before {
  opacity: 1;
}
.banner .slideCon {
  width: 100%;
  max-width: 1310px;
  height: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding-top: 180px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}
.banner .slideCon .h5R {
  margin-top: 15px;
}
.banner .slideCon .h5R br {
  display: none;
}
.banner .slideCon .btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  margin-left: -100px;
}
.one {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  /* 下拉内容默认隐藏 */
  /* 下拉选项样式 - 白底绿字 */
  /* 鼠标悬停在下拉选项上的样式 */
  /* 鼠标悬停在触发按钮上时显示下拉内容 */
  /* 确保下拉按钮样式与原按钮一致 */
}
.one .swiper-slide {
  width: calc(50% - 10px);
  position: relative;
}
.one .swiper-slide img {
  width: 100%;
  display: block;
}
.one .swiper-slide .oneCon {
  position: absolute;
  top: 140px;
  left: 0px;
  width: 100%;
}
.one .swiper-slide .oneCon .h3R span {
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #333333;
  margin: 0px 28px;
}
.one .swiper-slide .oneCon .oneBtn {
  margin-top: 40px;
}
.one .swiper-slide .oneCon .oneBtn .btn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #48a038;
  border: 1px solid #48a038;
}
.one .swiper-slide .oneCon .oneBtn .btn:hover {
  color: #ffffff;
}
.one .swiper-slide .oneCon .oneBtn .btn:hover .imgWhite {
  display: block;
}
.one .swiper-slide .oneCon .oneBtn .btn:hover .imgGreen {
  display: none;
}
.one .swiper-slide .oneCon .oneBtn .yuyue {
  background: #48a038;
  color: #ffffff;
  margin-left: 5px;
}
.one .swiper-slide .oneCon .imgWhite {
  display: none;
}
.one .dropdown {
  position: relative;
  display: inline-block;
  /* 为iconfont右箭头添加样式 - 默认向下 */
  /* 当悬停时旋转箭头（从向下变为向上） */
  /* 关键修复：当鼠标悬停在整个dropdown容器上时，保持按钮的绿色背景 */
}
.one .dropdown .btn.dropdown-toggle {
  position: relative;
  padding-right: 30px;
  /* 为箭头留出空间 */
}
.one .dropdown .iconfont.icon-arrow-right {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(90deg) !important;
  /* 顺时针旋转90度变为向下箭头 */
  font-size: 18px !important;
  transition: transform 0.3s ease !important;
  /* 添加过渡动画 */
}
.one .dropdown:hover .iconfont.icon-arrow-right {
  transform: translateY(-50%) rotate(270deg) !important;
  /* 再旋转180度变为向上箭头 */
}
.one .dropdown:hover .btn.dropdown-toggle {
  background-color: #48a038 !important;
  color: white !important;
}
.one .dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow: hidden;
  margin-top: 0;
  /* 确保下拉框与按钮紧密连接 */
}
.one .dropdown-content a {
  color: #48A038;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  text-indent: 25px;
  font-size: 14px;
  background-color: white;
}
.one .dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #008d4c;
}
.one .dropdown:hover .dropdown-content {
  display: block;
}
.one .dropdown-toggle {
  display: inline-block;
}
.one .btnDiv {
  width: 100%;
  max-width: 1300px;
  margin: 60px auto 0px;
  height: 44px;
  position: absolute;
  right: 105px;
  bottom: 80px;
}
.one .btn-prev,
.one .btn-next {
  position: absolute;
  bottom: 0px;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  border: 1px solid #48a038;
  z-index: 2;
  text-align: center;
  color: #48a038;
  background: transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.one .btn-prev span,
.one .btn-next span {
  font-size: 36px;
  display: inline-block;
  transform: rotate(90deg);
  line-height: 44px;
}
.one .btn-prev:hover,
.one .btn-next:hover {
  background: #48a038;
  border-color: #48a038;
  color: #fff;
}
.one .btn-prev {
  right: 154px;
  transform: rotate(-180deg);
}
.one .btn-next {
  right: 100px;
}
.one .swiper-button-disabled {
  cursor: no-drop;
  background: transparent;
  color: #979292;
  border-color: #979292;
}
.one .swiper-button-disabled:hover {
  background: transparent;
  border-color: #979292;
  color: #979292;
}
.two {
  width: 100%;
  display: flex;
  height: 0;
  overflow: hidden;
  background: #003a40;
  padding: 0;
}
.two .twoL {
  width: calc(100% - 310px);
  text-align: center;
  box-sizing: border-box;
  padding-right: 30px;
  color: #ffffff;
}
.two .twoL .h3 {
  text-align: left;
  padding-left: 100px;
}
.two .twoL .twoLCon {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin-top: 50px;
}
.two .twoL .twoLCon > img {
  width: 100%;
  display: block;
}
.two .twoL .twoLCon iframe {
  width: 100%;
  height: 100%;
  border: 0px;
}
.two .twoL .twoLCon > a {
  width: 180px;
  height: 40px;
  font-size: 16px;
  position: absolute;
  line-height: 40px;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #48a038;
  color: #ffffff;
  border-color: #48a038;
}
.two .twoL .twoLCon .lcon {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
.two .twoL .twoLCon .lcon img {
  width: 100%;
  height: 100%;
  display: block;
}
.two .twoL .twoLCon .lcon > div {
  width: 0;
  height: 0;
  opacity: 0;
  position: relative;
  overflow: hidden;
}
.two .twoL .twoLCon .lcon .lconShow {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.two .twoL .twoRChoose {
  width: 100%;
  line-height: 50px;
  display: none;
}
.two .twoL .twoRChoose .twoLine {
  padding: 0 40px;
}
.two .twoL .twoRChoose .twoCk {
  color: #48a038;
}
.two .twoR {
  width: 310px;
  color: #ffffff;
  position: relative;
  padding-top: 100px;
}
.two .twoR .twoRChoose {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}
.two .twoR .twoRChoose .chooseBuy {
  width: 100%;
  height: 40px;
  position: relative;
  border: 1px solid #fff;
  box-sizing: border-box;
  color: #fff;
}
.two .twoR .twoRChoose .chooseBuy > input {
  display: none;
}
.two .twoR .twoRChoose .chooseBuy .chooseTshow {
  width: 100%;
  height: 100%;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0px 20px;
  cursor: pointer;
}
.two .twoR .twoRChoose .chooseBuy .chooseTshow .iconfont {
  font-size: 18px;
  float: right;
  transform: rotate(90deg);
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv {
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0px;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #eaecef;
  padding: 10px 20px;
  font-size: 14px;
  z-index: 2;
  clip-path: inset(0px 0px 100% 0px);
  transition: all 0.4s ease-in-out;
  max-height: 300px;
  overflow-y: auto;
  color: #333333;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv > div {
  padding: 10px 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv > div:hover {
  color: #48a038;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv::-webkit-scrollbar {
  width: 3px;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv::-webkit-scrollbar-thumb {
  background-color: #b5b5b5;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv2 {
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0px;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #fff;
  padding: 10px 20px;
  font-size: 14px;
  z-index: 2;
  clip-path: inset(0px 0px 100% 0px);
  transition: all 0.6s ease-in-out;
  display: flex;
  color: #333333;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv2 > div {
  width: 50%;
  max-height: 280px;
  overflow-y: auto;
  position: relative;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv2 > div::before {
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #48a038;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv2 > div > div {
  padding: 10px 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv2 > div > div:hover {
  color: #48a038;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv2 > div::-webkit-scrollbar {
  width: 3px;
}
.two .twoR .twoRChoose .chooseBuy .chooseTDiv2 > div::-webkit-scrollbar-thumb {
  background-color: #b5b5b5;
}
.two .twoR .twoRChoose .showChooseTDiv .chooseTDiv {
  clip-path: inset(0px 0px 0% 0px);
}
.two .twoR .twoRChoose .showChooseTDiv .chooseTDiv2 {
  clip-path: inset(0px 0px 0% 0px);
}
.two .twoR .twoRChooseDiv {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: calc(100% - 40px);
  height: calc(100% - 165px);
  margin-top: 40px;
  overflow: hidden;
  box-sizing: border-box;
  background: #002e33 url(../images/twoRbg_b72fe7cbf35cd46c3fb0.png) no-repeat;
  background-position: bottom center;
  background-size: 175px;
}
.two .twoR .twoRChooseDiv .moreTxt {
  width: calc(100% - 36px);
  text-align: left;
  font-size: 20px;
  line-height: 80px;
  border-bottom: 1px solid #33585c;
  color: #48a038;
  margin: 0px auto 15px;
  box-sizing: border-box;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon {
  width: 100%;
  height: calc(100% - 95px);
  flex-wrap: wrap;
  overflow-y: auto;
  padding: 0px 18px;
  box-sizing: border-box;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div {
  width: 100%;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div {
  width: 100%;
  padding: 20px 0px;
  cursor: pointer;
  position: relative;
  color: #ffffff;
  border-bottom: 1px solid #33585c;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div img {
  display: block;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .liveTime {
  width: 90px;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .liveTime img {
  width: 100%;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .twoDec {
  width: calc(100% - 105px);
  font-size: 14px;
  line-height: normal;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .twoDec .twoTit {
  margin-bottom: 20px;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .twoDec > div {
  width: 100%;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div:hover .twoDec {
  opacity: 1;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon > div .hideLi {
  display: none;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 2px;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon::-webkit-scrollbar-thumb {
  width: 2px;
  background: #48a038;
}
.two .twoR .twoRChooseDiv .twoRChooseDivCon::-webkit-scrollbar-track {
  background: #d8d8d8;
  /* 设置滚动条背景的颜色 */
}
.three {
  width: 100%;
  padding-top: 120px;
}
.three .threeTit {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.three .threeTit br {
  display: none;
}
.three img {
  width: 100%;
  display: block;
  margin-top: 60px;
}
.four {
  width: 100%;
  padding: 120px 5% 100px;
  box-sizing: border-box;
}
.four .h3 {
  text-align: center;
  margin-bottom: 50px;
}
.four .fourCon {
  display: flex;
  width: 100%;
}
.four .fourCon > div {
  width: 50%;
}
.four .fourCon .fourL {
  padding-left: 12%;
  box-sizing: border-box;
}
.four .fourCon .fourL > div {
  width: 100%;
  position: relative;
}
.four .fourCon .fourL > div .fourHide {
  width: 100%;
}
.four .fourCon .fourL > div .fourHide .fourSon {
  opacity: 0.3;
}
.four .fourCon .fourL > div .fourHide .fourSon:first-child {
  opacity: 1;
}
.four .fourCon .fourL > div .fourHide > div {
  width: 100%;
  height: 88%;
  display: flex;
  position: relative;
}
.four .fourCon .fourL > div .fourHide > div .fourLine {
  width: 1px;
  height: 100%;
  background: #48a038;
  position: absolute;
  top: 0;
  left: 15px;
}
.four .fourCon .fourL > div .fourHide > div .fourIcon {
  width: 30px;
  height: 30px;
  position: relative;
}
.four .fourCon .fourL > div .fourHide > div .fourIcon .fourdiv {
  width: 30px;
  height: 30px;
  background: #48a038;
  position: absolute;
  top: 0;
  left: 0;
}
.four .fourCon .fourL > div .fourHide > div .fourIcon .fourdiv::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -5px);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
}
.four .fourCon .fourL > div .fourHide > div .fourText {
  width: calc(100% - 30px);
  box-sizing: border-box;
  padding: 0 18% 270px 40px;
}
.four .fourCon .fourL > div .fourHide > div .fourText .h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.four .fourCon .fourL > div .fourHide > div .fourText .h6R {
  margin-bottom: 36px;
}
.four .fourCon .fourL > div .fourHide > div .fourText .fourLimg {
  width: 100%;
  display: none;
}
.four .fourCon .fourL > div .fourHide > div .fourText .fourLimg img {
  width: 100%;
}
.four .fourCon .fourL > div .fourZ {
  width: 100%;
  height: 12.2%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffffff;
  opacity: 0.8;
}
.four .fourCon .fourR {
  padding-right: 6.4%;
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  overflow: hidden;
  max-height: 749px;
}
.four .fourCon .fourR .fourRson {
  position: absolute;
  width: 100%;
  height: 100%;
}
.four .fourCon .fourR .fourRson img {
  object-fit: cover;
  display: block;
}
.five {
  width: 100%;
  height: 740px;
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.five .five_bj {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
  z-index: 0;
}
.five .fiveImg {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-top: 95px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.five .fiveImg > img {
  width: auto;
  display: block;
}
.five .fiveImg .fiveImgL .h3 {
  margin-bottom: 8px;
}
.five .fiveImg .fiveImgL img {
  margin: 28px 0px 6px;
}
.five .fiveImg .fiveImgL .blue {
  color: #48a038;
}
.five .fiveImg .fiveImgR {
  margin-left: 200px;
  margin-right: -5%;
}
.oneM {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  justify-content: space-between;
  position: relative;
  display: none;
}
.oneM > div {
  width: calc(50% - 10px);
  position: relative;
}
.oneM > div img {
  width: 100%;
  display: block;
}
.oneM > div .oneCon {
  position: absolute;
  top: 140px;
  left: 0px;
  width: 100%;
}
.oneM > div .oneCon .h3R span {
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #333333;
  margin: 0px 28px;
}
.oneM > div .oneCon .oneBtn {
  margin-top: 40px;
}
.oneM > div .oneCon .oneBtn .btn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #48a038;
  border: 1px solid #48a038;
}
.oneM > div .oneCon .oneBtn .btn:hover {
  color: #ffffff;
}
.oneM > div .oneCon .oneBtn .yuyue {
  background: #48a038;
  color: #ffffff;
  margin-left: 5px;
}
@media screen and (min-width: 800px) and (max-width: 1081px) {
  .two .twoL .twoLCon {
    min-height: 740px;
  }
  .two .twoL .twoLCon iframe {
    max-width: 324px;
  }
  .five .fiveImg .fiveImgR {
    margin-right: -5%;
  }
}
@media screen and (min-width: 1080px) {
  .goTop .goTopBtn {
    background: #ffffff;
  }
  .goTop .goTopBtn .btnShow .btnIcon {
    background-color: #0056a7;
  }
  .goTop .goTopBtn:hover {
    background: #ffffff;
  }
}
.mTxt {
  display: none;
}
@media screen and (max-width: 800px) {
  .pcTxt {
    display: none;
  }
  .mTxt {
    display: block;
    padding-top: 100px;
  }
  .mobileHide {
    display: none;
  }
  header .menuType {
    background: rgba(255, 255, 255, 0.1);
  }
  /* 响应式调整 */
  .dropdown-content {
    min-width: 100px;
  }
  .dropdown-content a {
    padding: 10px 12px;
    font-size: 13px;
  }
  .banner {
    width: 100%;
    height: 100vh;
  }
  .banner .swiper {
    width: 100%;
    height: 100%;
  }
  .banner .slideCon {
    padding: 0 15px;
    padding-top: 130px;
  }
  .banner .slideCon .h5R {
    margin-top: 30px;
    font-size: 14px;
    line-height: 28px;
  }
  .banner .slideCon .h5R br {
    display: block;
  }
  .banner .slideCon .btn {
    bottom: 20%;
    margin-left: -87.5px;
  }
  .banner .bannerSwiper .swiper-pagination {
    display: block;
    bottom: 75px;
  }
  .banner .bannerSwiper .btn-prev,
  .banner .bannerSwiper .btn-next {
    margin-top: -15px;
    width: 30px;
    height: 30px;
    right: 15px;
  }
  .banner .bannerSwiper .btn-prev span,
  .banner .bannerSwiper .btn-next span {
    font-size: 18px;
    line-height: 30px;
  }
  .banner .bannerSwiper .btn-prev {
    right: 75px;
  }
  .one {
    display: none;
  }
  .oneM {
    padding-top: 0px;
    padding-bottom: 0px;
    flex-wrap: wrap;
    display: block;
  }
  .oneM > div {
    width: 100%;
  }
  .oneM > div .oneCon {
    top: 40px;
  }
  .oneM > div .oneCon .h3R span {
    height: 15px;
    margin: 0px 20px;
  }
  .oneM > div .oneCon .oneBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  .oneM > div .oneCon .oneBtn .btn {
    width: 120px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
  }
  .oneM > div .oneCon .oneBtn .dropdown {
    /* 为iconfont右箭头添加样式 - 默认向下 */
    /* 当悬停时旋转箭头（从向下变为向上） */
    /* 关键修复：当鼠标悬停在整个dropdown容器上时，保持按钮的绿色背景 */
  }
  .oneM > div .oneCon .oneBtn .dropdown .btn.dropdown-toggle {
    position: relative;
    padding-right: 30px;
  }
  .oneM > div .oneCon .oneBtn .dropdown .iconfont.icon-arrow-right {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(90deg) !important;
    /* 移动端同样默认向下 */
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
    /* 添加过渡动画 */
  }
  .oneM > div .oneCon .oneBtn .dropdown:hover .iconfont.icon-arrow-right {
    transform: translateY(-50%) rotate(270deg) !important;
    /* 移动端悬停同样变为向上 */
  }
  .oneM > div .oneCon .oneBtn .dropdown:hover .btn.dropdown-toggle {
    background-color: #48a038 !important;
    color: white !important;
  }
  .oneM > div .oneCon .oneBtn .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
    margin-top: 2px;
  }
  .oneM > div .oneCon .oneBtn .dropdown-content a {
    color: #48a038;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 13px;
    background-color: white;
    text-indent: 4px;
    border: none;
    height: auto;
    line-height: normal;
  }
  .oneM > div .oneCon .oneBtn .dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #008d4c;
  }
  .oneM > div .oneCon .oneBtn .dropdown:hover .dropdown-content {
    display: block;
  }
  .two {
    flex-wrap: wrap;
    height: 0;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
  }
  .two .twoL {
    padding-right: 0px;
    width: 100%;
  }
  .two .twoL .h3 {
    padding-left: 0px;
    text-align: center;
  }
  .two .twoL .twoRChoose {
    display: block;
    line-height: 30px;
    margin-top: 30px;
  }
  .two .twoL .twoRChoose .twoLine {
    padding: 0 30px;
  }
  .two .twoL .twoLCon {
    margin-top: 25px;
    border-right: 0px solid #154b39;
    max-height: 672px;
    overflow: hidden;
  }
  .two .twoL .twoLCon iframe {
    width: 100%;
    max-width: 334px;
    height: 100%;
    border: 0px;
    margin: 0px auto;
  }
  .two .twoL .twoLCon .lcon > div img {
    height: auto;
    width: 100%;
  }
  .two .twoR {
    width: 100%;
    padding-top: 40px;
  }
  .two .twoR .twoRChoose {
    padding-right: 0px;
    font-size: 13px;
  }
  .two .twoR .twoRChooseDiv {
    position: relative;
    height: auto;
    max-height: 286px;
    padding-bottom: 15px;
    width: 100%;
    margin-top: 5px;
    background: #002e33;
  }
  .two .twoR .twoRChooseDiv .moreTxt {
    width: calc(100% - 46px);
    font-size: 14px;
    line-height: 50px;
    border-bottom: 1px solid #33585c;
    color: #48a038;
    margin-bottom: 0px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon {
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 23px;
    padding-left: 23px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon > div {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 540px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div {
    width: 135px;
    margin-bottom: 0px;
    margin-right: 0px;
    display: flex;
    font-size: 12px;
    line-height: inherit;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0px 40px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .liveTime {
    width: 105px;
    padding-right: 0px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div:last-child {
    margin-right: 0px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .twoDec {
    width: 100%;
    box-sizing: border-box;
    padding: 0px;
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon > div > div .twoDec .twoTit {
    margin-top: 0px;
    margin-bottom: 15px;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon::-webkit-scrollbar:horizontal {
    height: 1px;
    width: 100%;
    background: #fff;
  }
  .two .twoR .twoRChooseDiv .twoRChooseDivCon::-webkit-scrollbar-thumb {
    border: 2px solid #48a038;
  }
  .three {
    padding-top: 110px;
  }
  .three .threeTit {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .three .threeTit .h3 {
    width: 100%;
  }
  .three .threeTit br {
    display: block;
  }
  .three .threeTit .btn {
    margin-top: 30px;
  }
  .three img {
    margin-top: 40px;
  }
  .four {
    padding: 110px 15px 0px;
  }
  .four .h3 {
    margin-bottom: 40px;
  }
  .four .fourCon {
    flex-wrap: wrap;
  }
  .four .fourCon > div {
    width: 100%;
  }
  .four .fourCon .fourL {
    padding-left: 0;
  }
  .four .fourCon .fourL > div .fourHide {
    position: relative;
    overflow-y: inherit;
  }
  .four .fourCon .fourL > div .fourHide > div {
    height: auto;
    margin-bottom: 110px;
  }
  .four .fourCon .fourL > div .fourHide > div .fourLine {
    display: none;
  }
  .four .fourCon .fourL > div .fourHide > div .fourIcon {
    display: none;
  }
  .four .fourCon .fourL > div .fourHide > div .fourText {
    width: 100%;
    padding: 0px;
  }
  .four .fourCon .fourL > div .fourHide > div .fourText .fourLimg {
    display: block;
    margin-bottom: 40px;
  }
  .four .fourCon .fourL > div .fourHide > div .fourText .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .four .fourCon .fourL > div .fourHide > div:last-child {
    margin-bottom: 0px;
  }
  .four .fourCon .fourL > div .fourHide > div:last-child .fourText {
    padding: 0px;
  }
  .four .fourCon .fourR {
    padding-right: 0;
  }
  .five {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    box-sizing: border-box;
    height: 415px;
  }
  .five .five_bj {
    z-index: -1;
    bottom: 0;
    top: auto;
  }
  .five .h3 br {
    display: block;
  }
  .five .fiveImg {
    flex-direction: row-reverse;
    margin-top: 36px;
    padding-top: 0;
    position: relative;
  }
  .five .fiveImg > div {
    width: 50%;
  }
  .five .fiveImg .fiveImgL {
    margin-left: 0;
    width: 50%;
  }
  .five .fiveImg .fiveImgL img {
    width: 180px;
    margin: 0;
  }
  .five .fiveImg .fiveImgL .h5R {
    font-size: 12px;
  }
  .five .fiveImg .fiveImgR {
    margin-left: 0;
    margin-right: 0;
    width: 170px;
  }
  .five .fiveCon {
    margin-top: 50px;
    padding: 0 20%;
  }
  .five .fiveCon > img {
    display: none;
  }
  .five .fiveCon .fiveImg {
    position: relative;
    flex-wrap: wrap;
    flex-direction: column;
    top: 0px;
  }
  .five .fiveCon .fiveImg > div {
    width: 100%;
    padding: 0;
  }
  .five .fiveCon .fiveImg .fiveImgR {
    padding-top: 15px;
    justify-content: center;
  }
  .five .fiveCon .fiveImg .fiveImgR > div {
    width: calc(100% - 80px);
    text-align: center;
  }
  .five .fiveCon .fiveImg .fiveImgR > div img {
    width: 75px;
    margin: 0 auto;
  }
  .five .fiveCon .fiveImg .fiveImgR > div:last-child {
    width: 75px;
  }
}

