@charset "UTF-8";
/* 全局变量 */
:root {
  --primary-color: #E61874;
  --white-color: #fff;

  --round-full: 9999px;
  --box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  --box-shadow-light: 0 1px 6px rgba(0, 0, 0, 0.06);
}

html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: 100%;
}
#wrapper {
  width: 100%;
  min-width: 1240px;
  display: flex;
  flex-direction: column;
}
.dyz-wp {
  width: 1200px;
  margin: 0 auto;
}
.full-bg {
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  /* background: url(../../assets/images/page-bg-lt.png), url(../../assets/images/page-bg.png);
  background-size:
    20% auto,
    100% 100%;
  background-position:
    5% 5%,
    right bottom;
  background-repeat: no-repeat; */
  background: url(../../assets/images/page-bg.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.full-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(135deg, #13c19e, #16b2a4, #1a98b0, #1e80ba, #2267c5, #2651cf); */
  z-index: -1;
}
.pic img {
  width: 100%;
  height: auto;
  display: block;
}
.m-auto {
  margin: 0 auto;
}
.mt-40 {
  margin-top: 40px;
}
.text-underline {
  text-decoration: underline;
}
.cursor-pointer {
  cursor: pointer;
}
.overflow-hidden {
  overflow: hidden;
}
/* 1.首页开始=================================== */
.wp-content {
  width: 100%;
  margin: 0 auto;
  /* background-color: lightblue; */
  padding-bottom: 100px;
}

.home-header-wrapper {
  width: 100%;
  position: relative;
  padding-top: 7%;
   /* background-color: lightblue; */
}
.home-header-wrapper .bg-placeholder {
  width: 20%;
  position: absolute;
  top: 0%;
  left: 0%;
  /* border: 1px solid var(--white-color); */
  
}

.home-header {
  /* width: 1040px; */
  width: 850px;
}
#nav-render {
  width: 100%;
  height: 50px;
  margin-top: 5%;
  /* background-color: var(--primary-color); */
}
.nav-list {
  width: 100%;
  /* margin-top: 5%; */
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  position: relative;
  z-index: 2;
  gap: 20px;
}

.nav-list .nav-item {
  /* width: 15%; */
  flex: 1;
  max-width: 15%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--white-color);
  font-size: 15px;
  border-radius: var(--round-full);
  cursor: pointer;
  border: 1px dashed var(--white-color);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    font-weight 0.3s ease;
}
.nav-list .nav-item:hover,
.nav-list .nav-item.active {
  background-color: var(--white-color);
  color: var(--primary-color);
  font-weight: bold;
}

.nav-list .nav-item.dropdown {
  position: relative;
}
.nav-list .nav-item.dropdown::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid var(--white-color);
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-list .nav-item.dropdown:hover::after {
  opacity: 1;
}
.nav-list .nav-item.dropdown .a-dropdown {
  /* display: none; */
  /* background-color: orange; */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 15px);
  width: auto;
  min-width: 100%;
  height: auto;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.nav-list .nav-item.dropdown:hover .a-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0px);
}
.nav-list .nav-item.dropdown .a-dropdown .dropdown-item {
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--primary-color);
  font-size: 15px;
  border-radius: var(--round-full);
  cursor: pointer;
  border: 1px dashed var(--primary-color);
  background-color: var(--white-color);
  white-space: nowrap;
  padding: 0 30px;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.nav-list .nav-item.dropdown .a-dropdown .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.home-content {
  width: 100%;
  padding: 55px 0px;
  border-radius: 10px;
  margin: 7% auto 0;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  display: flex;
  --divider-width: 2px;
  position: relative;
  z-index: 1;
}
.dyz-divider {
  width: var(--divider-width);
  background-color: #eee;
}
/* 登录 */
.login-content {
  width: calc(55% - var(--divider-width) / 2);
  /* padding: 15px 120px 10px; */
  padding: 0px 120px 0px;
  /* background-color: palegoldenrod; */
}

.login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.login-title .tips {
  margin: 0 10px;
  letter-spacing: 2px;
  font-size: 23px;
}

.login-title .circle {
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.dyz-tips{
  font-size: 14px;
  text-align: center;
  color: red;
  margin-top: 10px;
}

.dyz-form {
  margin-top: 30px;
}

.dyz-form-item {
  width: 100%;
  margin-bottom: 25px;
}

.dyz-form-item input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  font-size: 19px;
  color: #333333;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #eeeeee;
}
.dyz-form-item input::placeholder {
  color: #333333;
  font-size: 17px;
}
.submit-btn {
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 20px;
  color: var(--white-color);
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 2px;
  margin-top: 40px;
  background-image: linear-gradient(to right, #F0B405, #EF9A17, #ED7A2E, #EA4D4E, #E72D65, #E61874);
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background-image: linear-gradient(to right, #E61874, #E72D65, #EA4D4E, #ED7A2E, #EF9A17, #F0B405);
}

.login-footer .footer-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: space-between;
  color: #333333;
  font-size: 16px;
}
.login-footer .footer-item:last-child {
  margin-bottom: 0;
}
.login-footer .footer-item .forget-pwd {
  color: #7f7f7f;
}
/* 官方账号 */
.sub-content {
  width: calc(45% - var(--divider-width) / 2);
  /* padding-top: 15px; */
  padding: 0 80px 0;
  display: flex;
  flex-direction: column;
  /* background-color: lightcoral; */
}
.sub-list{
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.sub-list .sub-item{
  overflow: hidden;
  display: block;
  border-radius: 5px;
}
.sub-list .sub-item img{
  cursor: pointer;
  transition: transform 0.735s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sub-list .sub-item img:hover {
  transform: scale(1.05);
}
.sub-img {
  width: 142px;
}

.sub-ewm {
  width: 240px;
  margin: 45px auto 0;
}

.sub-tips {
  width: 63%;
  color: #999999;
  font-size: 13px;
  text-align: justify;
  margin: 30px auto 0;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dyz-footer {
  width: 100%;
  margin-top: auto;
  /* background-color: orange; */
  /* position: absolute;
  left: 0;
  bottom: 0%;
  z-index: 10; */
  padding-bottom: 50px;
}

.dyz-footer p {
  font-size: 16px;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--white-color);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}
.dyz-footer p a {
  display: inline-block;
}
.dyz-footer p span {
  margin: 0 5px;
}
.gzh-content{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 10px;
}
.gzh-content .gzh-ewm.pic{
  width: 180px;
}
.gzh-content .gzh-tips{
  font-size: 15px;
  color: #333333;
  text-align: center;
  margin: 5px auto 0;
}

.layui-layer-setwin{
  background-color: orange;
  right: 50%;
  top: -20px;
}
.layui-layer-setwin .layui-layer-close2{
  background-color: transparent;
  border: none;
  background: url('../images/close_btn.png');
 background-size: cover;
 background-position: center;
}
.layui-layer-setwin .layui-layer-close2:hover{
  background-color: transparent;
}
.layui-layer-setwin .layui-layer-close2::before{
 display: none;
 
}
/* 1.首页结束=================================== */
