/* 字体 */


/* 整体样式 */
::-webkit-scrollbar {
  display: none; /* Chrome Safari */
}

html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

html,
body {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #333333;
  font-family: "SourceHanSansCN", "Simhei";
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  -webkit-tap-highlight-color: transparent; /*把高亮颜色设置为透明，也可以使用rgba的形式*/
}

/* @media (max-width: 1400px) {
  html,
  body {
    font-size: 14px;
  }
} */

@media (max-width: 1000px) {
  html,
  body {
    font-size: 13px;
  }
}

ul,
ol,
span,
p {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* 屏幕划分尺寸 */
@media (max-width: 1400px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1000px) {
}

/* 内宽--1200px */
.inside {
  width: 1400px;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .inside {
    width: 96%;
  }
}

/* 1。页面头部 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.12);
}

.header-red {
  background: url(../imges/header.png) no-repeat center/cover;
  background-size: 100% 136px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.12);
}

header .inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: block;
  width: 82px;
  height: 54px;
}

header .logo img {
  width: 100%;
  height: 100%;
}

header .lan {
  color: #666666;
  cursor: pointer;
}
header .lan a{
  color: #666666;
}
.header-red .lan {
  color: #ffffff;
}

header .lan em {
  font-style: normal;
  margin: 0 16px;
}

/* 2.版权信息 */
footer {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 30px;
  font-size: 12px;
  color: #999999;
  text-align: center;
  line-height: 23px;
  font-weight: bold;
}

.footer-white {
  height: 80px;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid #e2e1e0;
}

.footer-white .inside {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* 3.登录注册 */
.main {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  background: url(../imges/bg.png) no-repeat center/cover;
  background-attachment: fixed;
}

.main .inside {
  position: relative;
}

.login {
  width: 460px;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.login h1 {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
}

.login .box {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 34px 0 48px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 9px 16px 2px rgba(78, 79, 80, 0.1);
}

.top {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #dbdfe8;
  display: flex;
  justify-content: space-between;
  margin-bottom: 43px;
}

.top span {
  display: inline-block;
  width: 50%;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  color: #666666;
  font-weight: bold;
  padding-bottom: 10px;
}

.top span a {
  color: #666666;
}

.top .active a,
.top span:hover a {
  color: #0068B7;
}

.top .active,
.top span:hover {
  border-bottom: 2px solid #0068B7;
}

.login .bom {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 0 40px;
}

.login .menu ul {
  display: none;
}

.login .menu .active {
  display: block;
}

.login ul {
  width: 100%;
  height: auto;
}

.login ul li {
  width: 100%;
  height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login ul li:not(:first-child) {
  margin-top: 28px;
}

.login ul li .inp {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: solid 1px #d8dde7;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login ul .code .inp {
  width: 64%;
}

.login ul .code a {
  display: inline-block;
  width: 32%;
  height: 100%;
  background: #0068B740;
  border-radius: 5px;
  color: #ffffff;
  font-size: 13px;
  line-height: 54px;
  text-align: center;
  cursor: pointer;
}
.login ul .code a.send0{
  background-color: #ececec;
  color: #f0832b;
  opacity: 1;
}

.login ul li .inp img {
  width: 18px;
  height: auto;
}

.login ul li:first-child .inp img {
  width: 14px;
}

.login ul li .inp input {
  width: calc(100% - 18px);
  height: 100%;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  padding: 0 11px;
  font-size: 14px;
  color: #acb3bc;
  background-color: #ffffff;
}
input::-webkit-input-placeholder {
  /* WebKit browsers，webkit内核浏览器 */
  color: #acb3bc;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #acb3bc;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #acb3bc;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #acb3bc;
}

.login .forget {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}

.login .forget a {
  font-size: 14px;
  font-weight: bold;
}

.login .forget a:nth-child(1) {
  color: #888888;
}

.login .forget a:nth-child(2) {
  color: #0068B7;
}

.login .btns {
  margin-top: 34px;
}

.login .btns .a {
  display: block;
  width: 100%;
  height: 54px;
  box-sizing: border-box;
  text-align: center;
  line-height: 54px;
  font-size: 14px;
  border-radius: 27px;
  border: none;
  outline: none;
  cursor: pointer;
}

.login .btns .a:nth-child(1) {
  color: #ffffff;
  background-color: #0068B7;
  box-shadow: 0px 9px 17px 2px #0068B740;
}

.login .btns .a:nth-child(2) {
  color: #666666;
  background-color: #f5f5f5;
  border: solid 1px #dbdee8;
  margin-top: 20px;
}

.login .open {
  display: block;
  color: #f0832b;
  margin-top: 22px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.login .other {
  margin-top: 30px;
}

.login .other h4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #999999;
  font-size: 16px;
}

.login .other h4:before,
.login .other h4:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid #dbdee8;
  margin: auto;
}

.login .other .bom {
  text-align: center;
}

.login .other .bom a:not(:last-child) {
  margin-right: 20px;
}

.login .other .bom img {
  width: 26px;
  height: auto;
}

.login .agree {
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.login .tips {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.login .tips img {
  width: 17px;
  height: auto;
}

.login .agree p,
.login .tips p {
  margin-left: 10px;
  color: #888888;
  font-size: 14px;
  font-weight: bold;
  line-height: 23px;
}

.login .agree p a {
  color: #21376c;
}

.login .agree input[type="checkbox"] {
  width: 17px;
  height: 14px;
  line-height: 14px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  position: relative;
  border-radius: 2px;
  margin-top: 4px;
}
.login .agree input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  border: solid 1px #d9dde7;
  border-radius: 2px;
}
.login .agree input[type="checkbox"]:checked::before {
  content: "\2713";
  background-color: #0068B7;
  border: solid 1px #0068B7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
}

/* 4.注册弹窗 */
.pop {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

.pop .reg-close {
  position: fixed;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.pop .reg-close img {
  width: 100%;
  height: 100%;
}

.pop .pop-main {
  width: 650px;
  height: auto;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pop .pop-top {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 30px;
  text-align: center;
  background-color: #f5f5f5;
}

.pop .pop-top img {
  width: 50px;
  height: 50px;
}

.pop .pop-top p {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
}

.pop .bom {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 30px 35px;
  display: flex;
  justify-content: space-between;
}

.pop .code {
  width: 120px;
  height: auto;
}

.pop .right {
  width: calc(100% - 170px);
  height: auto;
}

.pop .line {
  width: 1px;
  height: 142px;
  background-color: #dedede;
  margin: 0 24px;
}

.pop .code img {
  width: 120px;
  height: 120px;
}

.pop .code p {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 23px;
  margin-top: 3px;
}

.pop .txt {
  width: 100%;
  height: 43px;
  line-height: 43px;
  background-color: #e8e8e8;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0 16px;
  color: #666666;
  font-weight: bold;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pop .btns {
  width: 174px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  background-color: #f0832b;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  margin: 32px auto 0;
}

/* 1000以下 */
@media (max-width: 800px) {
  /* 1.页面头部 */
  header {
    height: 47px;
  }
  header .logo {
    width: 50px;
    height: 32px;
  }
  header .lan em {
    margin: 0 7px;
  }
  /* 2.版权信息 */
  footer {
    font-size: 10px;
    bottom: 0;
    line-height: 21px;
  }
  footer span {
    display: block;
  }
  .footer-white {
    height: 100px;
  }
  /* 3.登录注册 */
  .login {
    width: 100%;
    position: relative;
  }
  .login h1 {
    width: 100%;
    text-align: center;
    /* display: none; */
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .login .box {
    padding: 47px 0 19px;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 0px rgba(78, 79, 80, 0.1);
  }
  .top {
    margin-bottom: 20px;
  }
  .top span {
    padding-bottom: 5px;
    font-size: 16px;
  }
  .login .bom {
    padding: 0 20px;
  }
  .login ul li {
    height: 37px;
  }
  .login ul li:not(:first-child) {
    margin-top: 13px;
  }
  .login ul li .inp {
    padding: 0 7px;
    border-radius: 3px;
  }
  .login ul .code span {
    line-height: 37px;
    font-size: 12px;
  }
  .login ul li .inp img {
    width: 12px;
  }
  .login ul li:first-child .inp img {
    width: 9px;
  }
  .login ul li .inp input {
    width: calc(100% - 12px);
    padding: 0 7px;
    font-size: 12px;
  }
  .login .forget {
    margin-top: 7px;
  }
  .login .forget a {
    font-size: 12px;
  }
  .login .btns {
    margin-top: 12px;
  }
  .login .btns a {
    height: 37px;
    line-height: 37px;
    font-size: 12px;
    border-radius: 23px;
  }
  .login .btns a:nth-child(1) {
    box-shadow: 0px 0px 0px 0px rgba(240, 131, 43, 0.24);
  }
  .login .btns a:nth-child(2) {
    margin-top: 7px;
  }
  .login .open {
    margin-top: 7px;
    font-size: 12px;
  }
  .login .other {
    margin-top: 5px;
  }
  .login .other h4 {
    font-size: 12px;
    line-height: 12px;
  }
  .login .other .bom a:not(:last-child) {
    margin-right: 19px;
  }
  .login .other .bom img {
    width: 17px;
  }
  .login .agree {
    margin-top: 7px;
  }
  .login .agree p,
  .login .tips p {
    margin-left: 7px;
    font-size: 12px;
  }
  .login .tips {
    margin-top: 7px;
  }
  .login .tips img {
    width: 13px;
  }
  .login .agree input[type="checkbox"] {
    width: 11px;
    height: 11px;
    margin-top: 6px;
  }
  /* 4.注册弹窗 */
  .pop .pop-main {
    width: 96%;
    border-radius: 5px;
  }
  .pop .reg-close {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 23px;
    height: 23px;
  }
  .pop .pop-top {
    padding: 15px;
  }
  .pop .pop-top img {
    width: 20px;
    height: 20px;
  }
  .pop .pop-top p {
    font-size: 14px;
    margin-top: 0;
  }
  .pop .bom {
    padding: 15px 10px;
  }
  .pop .code {
    width: 85px;
  }
  .pop .code img {
    width: 85px;
    height: 85px;
  }
  .pop .code p {
    font-size: 10px;
    line-height: 21px;
    margin-top: 0;
  }
  .pop .line {
    width: 1px;
    height: 130px;
    margin: 0 13px;
  }
  .pop .right {
    width: calc(100% - 112px);
  }
  .pop .txt {
    height: 32px;
    line-height: 32px;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 0 7px;
    font-size: 10px;
  }
  .pop .btns {
    width: 120px;
    height: 32px;
    line-height: 32px;
    border-radius: 2px;
    font-size: 12px;
  }
}

/* 5.开户 */
.act {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 80px;
}

.act h1 {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
}

.act .top {
  margin-top: 10px;
}

.act .box {
  width: 100%;
  height: 100%;
}

.act .top .inside {
  display: flex;
  justify-content: space-between;
}

.act .box .form {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
}

.act ul {
  width: 50%;
  height: auto;
}

.act .form1 ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.act ul li {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.act .form1 ul li {
  width: 50%;
}

.act ul li:last-child {
  height: 120px;
  align-items: flex-start;
}

.act ul li:not(:first-child) {
  margin-top: 20px;
}

.act .form1 ul li:not(:first-child) {
  margin-top: 0;
}

.act .form1 ul li:nth-child(n + 3) {
  margin-top: 20px;
}

.act ul li span em {
  color: #f0832b;
  margin-right: 3px;
}

.act ul li span {
  display: inline-block;
  width: 240px;
  color: #666666;
  font-size: 14px;
  text-align: right;
}

.act ul li input[type="text"] {
  width: calc(100% - 260px);
  height: 100%;
  outline: 0;
  border: solid 1px #d8dde7;
  box-sizing: border-box;
  padding: 0 11px;
  font-size: 14px;
  color: #acb3bc;
  background-color: #ffffff;
  border-radius: 3px;
}

.act ul li .file {
  width: calc(100% - 260px);
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.act ul li .file .item {
  width: calc(50% - 3px);
  height: 100%;
  background-color: #f1f3f7;
  border-radius: 5px;
  cursor: pointer;
  color: #999999;
  font-size: 14px;
  position: relative;
}

.act ul li .file .item .plus {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.act ul li .file .item input[type="file"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.act ul li .file .item .img{
  width: 100%;
  height: 100%;
}
.act ul li .file .item .plus img {
  width: 30px;
  height: 30px;
}

.act .btns {
  margin: 90px 0 170px;
  text-align: center;
}

.act .btns input{
  display: inline-block;
  width: 360px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border-radius: 27px;
  font-size: 14px;
  cursor: pointer;
 border:none
}

.act .btns input:nth-child(1) {
  background-color: #f0832b;
  color: #ffffff;
  margin-right: 20px;
}

.act .btns input:nth-child(2) {
  color: #666666;
  background-color: #f5f5f5;
  border-radius: 27px;
  border: solid 1px #dbdee8;
}

@media (max-width: 1300px) {
  .act ul li span {
    width: 200px;
  }
  .act ul li input[type="text"] {
    width: calc(100% - 210px);
  }
  .act ul li .file {
    width: calc(100% - 210px);
  }
}

@media (max-width: 1000px) {
  .act .box .form {
    flex-wrap: wrap;
  }
  .act ul {
    width: 75%;
  }
  .act .form1 ul {
    width: 75%;
  }
  .act .form1 ul li {
    width: 100%;
  }
  .act .form1 ul li:nth-child(n + 3) {
    margin-top: 0;
  }
  .act .form1 ul li:nth-child(n + 2) {
    margin-top: 20px;
  }
  .act ul:nth-child(2) {
    margin-top: 20px;
  }
  .act .btns {
    margin: 75px 0 180px;
  }
}

@media (max-width: 800px) {
  .act {
    margin-top: 47px;
  }
  .act h1 {
    font-size: 18px;
    margin-bottom: 23px;
  }
  .act ul {
    width: 100%;
  }
  .act ul li {
    height: auto;
    flex-direction: column;
  }
  .act ul li:last-child {
    height: auto;
  }
  .act ul li:not(:first-child) {
    margin-top: 15px;
  }
  .act ul:nth-child(2) {
    margin-top: 15px;
  }
  .act .form1 ul {
    width: 100%;
  }
  .act .form1 ul li:nth-child(n + 2) {
    margin-top: 15px;
  }
  .act ul li span {
    width: 100%;
    text-align: left;
  }
  .act ul li input[type="text"] {
    width: 100%;
    height: 32px;
    font-size: 12px;
    border-radius: 2px;
    margin-top: 5px;
    padding: 0 7px;
  }
  .act ul li .file {
    width: 100%;
    height: 100px;
    margin-top: 5px;
  }
  .act ul li .file .item {
    border-radius: 3px;
    font-size: 12px;
  }
  .act ul li .file .item img {
    width: 20px;
    height: 20px;
  }
  .act .btns {
    margin: 32px 0 180px;
  }
  .act .btns span {
    width: 43%;
    height: 37px;
    line-height: 37px;
    border-radius: 23px;
    font-size: 12px;
  }
  .act .btns span:nth-child(1) {
    margin-right: 10px;
  }
}



.my-videosD{
  padding-top: 40px;
}