/* head */
.head {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding-left: 0.5rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.head .logo a,
.head .logo img {
  display: block;
}
.head .logo img {
  max-height: 60px;
}
.head .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.head .right .nav {
  padding-right: 0.5rem;
}
.head .right .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.head .right .nav li {
  position: relative;
}
.head .right .nav li a {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 100px;
  padding: 0 0.3rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .right .nav li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 3px;
  width: 0px;
  background-color: var(--main-color);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .right .nav li dl {
  position: absolute;
  top: 120px;
  min-width: 100%;
  background-color: #fff;
  padding: 10px 10px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .right .nav li dd {
  border-bottom: 1px solid #eee;
}
.head .right .nav li dd a {
  display: block;
  font-size: 15px;
  line-height: 2;
  padding: 0 5px;
  white-space: nowrap;
}
.head .right .nav li:hover > a {
  color: var(--main-color);
}
.head .right .nav li:hover > a:after {
  width: 100%;
}
.head .right .nav li:hover dl {
  top: 100px;
  visibility: visible;
  opacity: 1;
}
.head .right .nav li dd a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.head .right .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 0 0.5rem;
  background-color: var(--main-color);
}
.head .right .btn .img {
  margin-right: 0.25rem;
}
.head .right .btn img {
  display: block;
}
.head .right .btn > div {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.head .right .btn p {
  font-size: 14px;
  color: #fff;
  margin-right: 0.08rem;
}
.head .right .btn i {
  font-size: 20px;
  color: #fff;
}
.head .right .btn .search_btn {
  position: relative;
  padding-right: 0.2rem;
  margin-right: 0.2rem;
}
.head .right .btn .search_btn:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 1px;
  height: 20px;
  background-color: #eee;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* serach */
.head_search {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 45px;
  width: 768px;
  max-width: 90%;
  /* height: 140px; */
}
.head_search form {
  position: relative;
}
.head_search input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ddd;
  outline: 0;
  padding: 0 70px 0 20px;
  font-size: 14px;
  color: #666;
}
.head_search button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  border: 0px;
  font-size: 22px;
  cursor: pointer;
  background-color: #ccc;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.head_search button:hover {
  color: #fff;
  background-color: var(--main-color);
}
.head_search .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.head_search .close:after,
.head_search .close:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  line-height: 20px;
  background-color: #999;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.head_search .close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search_bg {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/* menu */
.menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 0 2.5rem;
  background-color: #fff;
}
.menu .left {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1.5rem;
  height: 100%;
  background-color: #333;
}
.menu .left .logo {
  padding: 0.2rem 0.1rem;
}
.menu .left .logo img {
  display: block;
}
.menu .close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .close i {
  font-size: 36px;
  color: #333;
}
.menu .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.menu .nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.menu .nav ul {
  position: relative;
}
.menu .nav ul li a {
  position: relative;
  display: block;
  text-align: right;
  font-size: 0.28rem;
  line-height: 2;
  white-space: nowrap;
  padding: 0 0 0 0.4rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .nav ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 0px;
  height: 2px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .nav ul dl {
  position: absolute;
  right: -webkit-calc(100% + 80px);
  right: -moz-calc(100% + 80px);
  right: calc(100% + 80px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  /* animation: navInLeft .4s ease-in; */
}
.menu .nav ul dl dd a {
  display: block;
  font-size: 0.2rem;
  line-height: 2.5;
}
.menu .nav ul dl dd.l3 a {
  display: block;
  font-size: 0.18rem;
  line-height: 2.5;
}

.menu .nav ul li.on > a {
  color: var(--main-color);
  padding: 0 0.4rem 0 0;
}
.menu .nav ul li.on > a:after {
  width: 0.3rem;
}
.menu .nav ul li.on > dl {
  right: -webkit-calc(100% + 50px);
  right: -moz-calc(100% + 50px);
  right: calc(100% + 50px);
  visibility: visible;
  opacity: 1;
}
.menu .nav ul li dd.on > a {
  color: var(--main-color);
  padding: 0 0.4rem 0 0;
}
.menu .nav ul li dd.on > a:after {
  width: 0.3rem;
}
.menu .nav ul dd.on > dl {
  right: -webkit-calc(100% + 50px);
  right: -moz-calc(100% + 50px);
  right: calc(100% + 50px);
  visibility: visible;
  opacity: 1;
}
.menu .nav1 {
  display: none;
}

/* index */
.index_bg {
  display: block;
  background-color: #fafafa;
  margin-top: 0px;
}

.inbanner {
  position: relative;
  margin-top: 100px;
}
.inbanner .swiper-slide {
  position: relative;
}
.inbanner .swiper-slide a {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
}
.inbanner .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inbanner .swiper-slide .text {
  position: absolute;
  top: 40%;
  left: 10%;
  /* padding-top: 100px; */
}
.inbanner .swiper-slide .text h3 {
  font-size: 42px;
  /* font-weight: bold; */
  color: #fff;
  margin-bottom: 10px;
}
.inbanner .swiper-slide .text h5 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
}
.inbanner .swiper-slide .text p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
}
.inbanner .swiper-slide .text p span {
  display: inline-block;
  margin: 0 10px;
  width: 1px;
  height: 10px;
  background-color: #eee;
}
.inbanner .banner_btn {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 10%;
  width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.inbanner .banner_btn .btn {
  position: absolute;
  bottom: 65%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inbanner .banner_btn .btn .banner_prev,
.inbanner .banner_btn .btn .banner_next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
  cursor: pointer;
  background-color: var(--main-color);
  border-radius: 100%;
  transition: all 0.3s;
}
.inbanner .banner_btn .btn .banner_prev i,
.inbanner .banner_btn .btn .banner_next i {
  font-size: 24px;
  margin-left: 5px;
}
.inbanner .banner_btn .btn .banner_prev {
  transform: rotate(180deg);
  margin-right: 30px;
}
.inbanner .banner_btn .btn .banner_prev:hover,
.inbanner .banner_btn .btn .banner_next:hover {
  background-color: var(--main-color2);
}
.inbanner .banner_btn .box {
  position: absolute;
  top: calc(40% + 200px);
  display: flex;
  align-items: center;
}
.inbanner .banner_btn .box .loading {
  position: relative;
  height: 3px;
  width: 200px;
  margin-right: 15px;
  background-color: #fff;
}
.inbanner .banner_btn .box .loading .bt {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  background-color: var(--main-color);
}
.inbanner .banner_btn .box .num {
  width: 100px;
  color: #fff;
}
.inbanner .banner_btn .box .num span {
  font-size: 20px;
}

.inbanner .banner_btn .ico {
  position: absolute;
  bottom: 10px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}
.inbanner .banner_btn .ico i {
  font-size: 32px;
  padding-right: 5px;
}
.inbanner .banner_btn .ico p {
  font-size: 20px;
  font-weight: bold;
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0.25) 100%, rgba(255, 255, 255));
  /* 文字颜色填充设置为透明 */
  -webkit-text-fill-color: transparent;
  /* 背景裁剪，即让文字使用背景色 */
  -webkit-background-clip: text;
  /* 背景图放大一下，看着柔和一些 */
  -webkit-background-size: 200% 100%;
  /* 应用动画flowCss 12秒速度 无限循环 线性匀速动画*/
  -webkit-animation: flowCss 6s infinite linear;
}

@-webkit-keyframes flowCss {
  0% {
    /* 移动背景位置 */
    background-position: 0 0;
  }

  100% {
    background-position: -400% 0;
  }
}

.intl {
  position: relative;
  margin-bottom: 0.5rem;
}
.intl h3 {
  font-size: 56px;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.05rem;
}
.intl h5 {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color);
}
.intl a {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-weight: bold;
  padding-right: 40px;
  color: #333;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.intl a::after {
  content: "···";
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 25px;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #333;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.intl a:hover {
  color: var(--main-color);
}
.intl a:hover::after {
  background-color: var(--main-color);
}

.inys {
  position: relative;
  z-index: 99;
  top: 0;
  padding-left: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.inys.on {
  opacity: 1;
  top: -100px;
  visibility: visible;
  transition: all 0.6s;
}
.inys ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  /* opacity: .8; */
}
.inys ul li {
  width: 25%;
  padding: 40px 50px;
  border-right: 1px solid #ddd;
}
.inys ul li:last-child {
  border-right: 0px;
}
.inys ul li .ico {
  margin-bottom: 20px;
}
.inys ul li i {
  font-size: 48px;
  line-height: 50px;
  color: var(--main-color);
}
.inys ul li h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.inys ul li p {
  font-size: 14px;
  line-height: 1.5;
  color: #888;
}

.inpro {
  margin-top: -20px;
  margin-bottom: 100px;
}
.inpro .content li a {
  position: relative;
  display: block;
  /* padding-bottom: 20px; */
  border-radius: 20px;
  overflow: hidden;
}
.inpro .content .img {
  overflow: hidden;
  background-color: #fff;
  padding-bottom: 100%;
}
.inpro .content .img img {
  display: block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inpro .content .text {
  position: relative;
  padding: 10px 5px 35px;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #eee;
}
.inpro .content .text h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inpro .content .text h5 {
  display: inline-block;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
  color: #555;
  padding: 0 20px;
  border: 1px solid #ccc;
  max-width: 100%;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
}
.inpro .content .text span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
  transition: all 0.5s;
}
.inpro .content li a:hover .text h3 {
  color: var(--main-color);
}
.inpro .content li a:hover .text h5 {
  color: #fff;
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.inpro .content li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.inpro .content li a:hover .text span {
  width: calc(90% - 20px);
}

.inabout {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.inabout::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100px;
  bottom: 0px;
  width: 100%;
  background: url(../images/inabout_img.png) no-repeat center;
  background-size: cover;
  background-color: var(--main-color);
}
.inabout .box {
  position: absolute;
  top: 0;
  left: 10%;
  width: 40%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inabout .box h3 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 5px;
}
.inabout .box h5 {
  font-size: 15px;
  color: #888;
  text-transform: uppercase;
}
.inabout .img {
  width: 50%;
  overflow: hidden;
  border-top-left-radius: 20px;
}
.inabout .img img {
  display: block;
}
.inabout .text {
  width: 50%;
  margin-top: 100px;
  padding: 80px 5% 100px 10%;
}
.inabout .text .intl h3,
.inabout .text .intl h5 {
  color: #fff;
}
.inabout .text p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}
.inabout .text .btn {
  display: flex;
}
.inabout .text .btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border: 2px solid #fff;
  height: 40px;
  width: 120px;
  border-radius: 40px;
  padding: 0 20px;
  transition: all 0.3s;
}
.inabout .text .btn a span {
  font-size: 14px;
}
.inabout .text .btn a i {
  font-size: 12px;
}
.inabout .text .btn a:first-child {
  margin-right: 30px;
}
.inabout .text .btn a:hover {
  color: var(--main-color);
  padding: 0 15px;
  background-color: #fff;
}

.innews .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.innews .content li {
  width: 30%;
}
.innews .content li a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s;
}
.innews .content li .img {
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
}
.innews .content li .img img {
  transition: all 0.3s;
}
.innews .content li .text {
  padding: 20px 15px;
}
.innews .content li .text h3 {
  font-size: 20px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.innews .content li .text .time {
  font-size: 14px;
  color: var(--main-color);
  margin: 10px 0;
  opacity: 0.6;
}
.innews .content li .text p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.innews .content li .text span {
  /* display: inline-block; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 30px;
  width: 80px;
  border-radius: 20px;
  transition: all 0.3s;
}
.innews .content li .text span i {
  font-size: 14px;
  line-height: 30px;
  margin-left: 0;
  /* opacity: 0; */
  transition: all 0.3s;
}
.innews .content li a:hover {
  background-color: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}
.innews .content li a:hover .img img {
  transform: scale(1.1);
}
.innews .content li a:hover .text span {
  padding: 0 15px;
  color: #fff;
  background-color: var(--main-color);
  width: 120px;
}
.innews .content li a:hover .text span i {
  color: #fff;
}

/* foot */

/* .foot_gbook {
  text-align: left;
  background-color: var(--main-color);
}
.foot_gbook .w80{
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 40px 0 50px;
}
.foot_gbook .text {
  margin-bottom: 20px;
}
.foot_gbook .text h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}
.foot_gbook .text p {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  opacity: .8;
}
.foot_gbook .content form {
  font-size: 0px;
}
.foot_gbook .content input {
  font-size: 14px;
  color: #333;
  line-height: 28px;
  width: 200px;
  padding: 5px 10px;
  border: 0px;
  outline: none;
  margin-right: 5px;
}
.foot_gbook .content input:first-child {
  width: 280px;
}
.foot_gbook .content button {
  display: inline-block;
  font-size: 16px;
  line-height: 38px;
  width: 100px;
  text-align: center;
  color: #fff;
  background-color: var(--main-color);
  border: 0px;
  cursor: pointer;
  vertical-align: top;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.foot_gbook .content button:hover {
  background-color: var(--main-color2);
} */

.foot_link {
  background-color: var(--main-color);
}
.foot_link .w80 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.foot_link p {
  color: rgba(255, 255, 255, 0.8);
}
.foot_link .gotop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.foot_link .gotop i {
  font-size: 20px;
}
.foot_content {
  background-color: var(--main-color);
}
.foot_content .w80 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.5rem 0 0.5rem;
}
.foot_content .code img {
  display: block;
  width: 120px;
  margin-bottom: 0.1rem;
}
.foot_content .code h3 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.foot_content .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.foot_content .nav li {
  margin-right: 0.5rem;
}
.foot_content .nav li:last-child {
  margin-right: 0;
}
.foot_content .nav li a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.foot_content .nav li dt {
  margin-bottom: 0.1rem;
  /* min-width: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35); */
}
.foot_content .nav li dt a {
  display: inline-block;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
}
.foot_content .nav li a:hover {
  color: rgba(255, 255, 255, 1);
}
.foot_content .nav li dd a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.foot_content .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.foot_content .logo img {
  display: block;
  opacity: 0.95;
  max-width: 250px;
  margin-bottom: 10px;
}
.foot_content .logo h3 {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  /* padding-right: 8px; */
  width: 100%;
  margin-bottom: 0.2rem;
  text-align: justify;
  text-align: end;
  text-align-last: justify;
  text-justify: distribute;
}
.foot_content .logo h4 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
}
.foot_content .logo h5 {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: bold;
}
.foot_content .foot_contact {
  display: none;
}

.foot_copyright {
  background-color: var(--main-color2);
}
.foot_copyright .w80 {
  padding: 0.2rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.foot_copyright p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.foot_copyright p a {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.foot_copyright p a:first-child {
  margin-left: 0px;
}
.foot_copyright a:hover {
  color: rgba(255, 255, 255, 1);
}
