.overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-l {
  text-align: left;
}
.text-c,
.align-center {
  text-align: center!important;
}
.text-r {
  text-align: right;
}
.show,
.setblock {
  display: block;
}
.hide {
  display: none;
}
.imgw100 {
  width: 100%;
}
.fl,
.float-left {
  float: left!important;
}
.fr,
.float-right {
  float: right!important;
}
.align-left {
  text-align: left!important;
}
.qxh_white {
  background: #fff;
}
.gray_color {
  color: #D2D2D2;
}
.red_color {
  color: red;
}
.deepgray_color {
  color: #999;
}
.fontsize12 {
  font-size: 12px;
}
.overflowy {
  overflow-y: hidden!important;
}
.Animation {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.relative {
  position: relative;
}
.pad-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.pad-t10 {
  padding-top: 10px!important;
}
.mar-t10 {
  margin-top: 10px;
}
.mar-t15 {
  margin-top: 15px;
}
.t-center {
  text-align: center;
}
.mar-r55 {
  margin-right: 55px;
}
.mar-b20 {
  margin-bottom: 20px;
}
.mar-b10 {
  margin-bottom: 10px;
}
.pad-t20 {
  padding-top: 20px!important;
}
.pad-bottom-no {
  padding-bottom: 0!important;
}
.pad-top-no {
  padding-top: 0!important;
}
.pad-all-no {
  padding: 0!important;
}
.con-w1 {
  width: 10%;
}
.con-w2 {
  width: 20%;
}
.con-w30 {
  width: 30%;
}
.con-w25 {
  width: 25%;
}
.con-w3 {
  width: 33.3%;
}
.con-w4 {
  width: 40%;
}
.con-w5 {
  width: 50%;
}
.con-w6 {
  width: 60%;
}
.con-w7 {
  width: 70%;
}
.con-w8 {
  width: 80%;
}
.height100 {
  height: 100%!important;
}
/*缩放效果淡入*/
@-webkit-keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes scale {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-webkit-keyframes FlipInY {
  0% {
    -webkit-transform: rotateY(360deg);
  }
  40% {
    -webkit-transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
  }
}
@-moz-keyframes FlipInY {
  0% {
    -moz-transform: rotateY(360deg);
  }
  40% {
    -moz-transform: rotateY(0);
  }
  100% {
    -moz-transform: rotateY(360deg);
  }
}
@keyframes FlipInY {
  0% {
    transform: rotateY(360deg);
  }
  40% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
/*图放大动画*/
.imgH {
  overflow: hidden;
}
.imgH img {
  width: 100%;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
.imgH:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.fB {
  font-weight: bold;
}
.clearfix:after {
  content: '';
  clear: both;
  display: block;
}
@font-face {
  font-family: "iconfont";
  src: url('../fontmy/iconfont.eot?t=1548399994155');
  src: url('../fontmy/iconfont.eot?t=1548399994155#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fontmy/iconfont.woff?t=1548399994155') format('woff'), url('../fontmy/iconfont.ttf?t=1548399994155') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ url('../fontmy/iconfont.svg?t=1548399994155#iconfont') format('svg');
  
  /* IE9 */
  /* iOS 4.1- */
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-tuichu:before {
  content: "\e608";
}
.icon-edit:before {
  content: "\e6ec";
}
.icon-yibiaopan:before {
  content: "\e62c";
}
.icon-sheji:before {
  content: "\e606";
}
.icon-xudianchi:before {
  content: "\e609";
}
.icon-huaxueshiyan:before {
  content: "\e60b";
}
.icon-icon-test:before {
  content: "\e60c";
}
.icon-zuzhijiagou:before {
  content: "\e60a";
}
.icon-quanbu:before {
  content: "\e611";
}
.icon-yunshangchuan:before {
  content: "\e61a";
}
.icon-shoumb:before {
  content: "\e64e";
}
.icon-shanchu:before {
  content: "\e64a";
}
.icon-yiyaoweisheng:before {
  content: "\e616";
}
.icon-tubiao-:before {
  content: "\e60d";
}
.icon-shan:before {
  content: "\e690";
}
.icon-huiyuan-:before {
  content: "\e65c";
}
.icon-xianx:before {
  content: "\e76b";
}
.icon-bianji:before {
  content: "\e607";
}
.icon-wodejifen:before {
  content: "\e65f";
}
.icon-fenxiang:before {
  content: "\e610";
}
.icon-tuandui:before {
  content: "\e648";
}
.icon-xin:before {
  content: "\e699";
}
.icon-xians:before {
  content: "\e76c";
}
.icon-fabu:before {
  content: "\e631";
}
html {
  font-size: 32px;
}
@media (min-width: 320px) {
  html {
    font-size: 22px;
  }
}
@media (min-width: 375px) {
  html {
    font-size: 25px;
  }
}
@media (min-width: 414px) {
  html {
    font-size: 28px;
  }
}
@media (min-width: 480px) {
  html {
    font-size: 32px;
  }
}
@media (min-width: 640px) {
  html {
    font-size: 50px;
  }
}
.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.wrapper.bodyaddbg {
  background: #f7f7f7;
}
.wrapper .conMain {
  width: 1440px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper .banner img {
  width: 100%;
}
.wrapper .navBtn {
  display: none;
  width: 45px;
  height: 45px;
  float: right;
  cursor: pointer;
  z-index: 99;
  position: absolute;
  right: 5px;
  top: 8px;
}
.wrapper .navBtn:before {
  content: '';
  display: block;
  width: 25px;
  height: 5px;
  border-top: 1px solid #00c0fc;
  border-bottom: 1px solid #00c0fc;
  margin: 15px auto 5px;
}
.wrapper .navBtn:after {
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background: #00c0fc;
  margin: 0 auto;
}
.wrapper .navBtn:hover {
  background: #00c0fc;
}
.wrapper .navBtn:hover:before {
  border-color: #fff;
}
.wrapper .navBtn:hover:after {
  background: #fff;
}
.wrapper .header {
  line-height: 83px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .header.addbg {
  position: fixed;
}
.wrapper .header .nav li {
  float: left;
  font-size: 16px;
  position: relative;
}
.wrapper .header .nav li .twomenu {
  display: none;
  position: absolute;
  top: 83px;
  left: -45px;
  width: 200px;
  border-top: 2px solid #009cff;
}
.wrapper .header .nav li .twomenu .txtm {
  background: rgba(51, 51, 51, 0.6);
  color: #fff;
  padding: 10px 5px;
  font-size: 0.28rem;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
.wrapper .header .nav li:hover .twomenu {
  display: block;
}
.wrapper .header .logohide {
  display: none;
}
.wrapper .header.addbg {
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  height: 71px;
}
.wrapper .header.addbg .logohide {
  display: block;
}
.wrapper .header.addbg .logo {
  display: none;
}
.wrapper .header.addbg .nav li a {
  color: #333333;
}
.wrapper .header .layui-btn {
  padding: 0 30px;
  height: 30px;
  line-height: 30px;
  margin-left: 10px;
  border: 1px solid #fff;
  color: #fff;
  background: none;
}
.wrapper .header .layui-btn.nonebg {
  border: 0;
}
.wrapper .header .layui-btn:hover {
  background: #fff;
  color: #444444;
}
.wrapper .header .logohide {
  display: none;
}
.wrapper .header.addbg {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.wrapper .header.addbg .logohide {
  display: block;
}
.wrapper .header.addbg .logo {
  display: none;
}
.wrapper .header.addbg .nav li a {
  color: #444;
}
.wrapper .header.addbg .nav li:hover a {
  color: #009cff;
}
.wrapper .header.addbg .layui-nav .layui-nav-more {
  border-top-color: #949494;
}
.wrapper .header.addbg .layui-nav .layui-nav-item a {
  color: #444;
}
.wrapper .header.addbg .layui-nav.menutwo .layui-nav-item a {
  color: #fff;
}
.wrapper .menutwo {
  position: absolute;
  left: 0;
  top: 75px;
  text-align: center;
  width: 100%;
  display: none;
  z-index: 1;
  background: none;
}
.wrapper .bannerBox .banimgBox {
  margin: 135px 0;
}
.wrapper .bannerBox .banner-1 {
  background: linear-gradient(to top, #6891fa 0, #645df3 100%);
  -webkit-background: linear-gradient(to top, #6891fa 0, #645df3 100%);
  -moz-background: linear-gradient(to top, #6891fa 0, #645df3 100%);
  -ms-background: linear-gradient(to top, #6891fa 0, #645df3 100%);
  -o-background: linear-gradient(to top, #6891fa 0, #645df3 100%);
}
.wrapper .bannerBox .banner-2 {
  background: linear-gradient(to top, #09bbfd 0, #2084e5 100%);
  -webkit-background: linear-gradient(to top, #09bbfd 0, #2084e5 100%);
  -moz-background: linear-gradient(to top, #09bbfd 0, #2084e5 100%);
  -ms-background: linear-gradient(to top, #09bbfd 0, #2084e5 100%);
  -o-background: linear-gradient(to top, #09bbfd 0, #2084e5 100%);
}
.wrapper .bannerBox .banner-3 {
  background: linear-gradient(to top, #060646 0, #20208c 100%);
  -webkit-background: linear-gradient(to top, #060646 0, #20208c 100%);
  -moz-background: linear-gradient(to top, #060646 0, #20208c 100%);
  -ms-background: linear-gradient(to top, #060646 0, #20208c 100%);
  -o-background: linear-gradient(to top, #060646 0, #20208c 100%);
}
.wrapper .bannerBox .banner-4 {
  background: linear-gradient(to top, #8119e2 0, #844ffb 100%);
  -webkit-background: linear-gradient(to top, #8119e2 0, #844ffb 100%);
  -moz-background: linear-gradient(to top, #8119e2 0, #844ffb 100%);
  -ms-background: linear-gradient(to top, #8119e2 0, #844ffb 100%);
  -o-background: linear-gradient(to top, #8119e2 0, #844ffb 100%);
}
.wrapper .bannerBox .banner-5 {
  background: linear-gradient(to top, #0f274c 0, #0f172f 100%);
  -webkit-background: linear-gradient(to top, #0f274c 0, #0f172f 100%);
  -moz-background: linear-gradient(to top, #0f274c 0, #0f172f 100%);
  -ms-background: linear-gradient(to top, #0f274c 0, #0f172f 100%);
  -o-background: linear-gradient(to top, #0f274c 0, #0f172f 100%);
}
.wrapper .videopos {
  height: 530px;
  position: relative;
}
.wrapper .videoBox {
  width: 1240px;
  position: absolute;
  top: -160px;
  background: url(../images/viobg.png);
  height: 666px;
  background-repeat: no-repeat;
  background-position: center center;
  left: 50%;
  margin-left: -630px;
}
.wrapper .videoBox .vioinfo {
  position: absolute;
  top: 60px;
  left: 50%;
  margin-left: -590px;
  background: #efefef;
  width: 1180px;
  height: 572px;
}
.wrapper .videoBox .video-img {
  width: 100%;
  height: 100%;
}
.wrapper .icon-ready {
  background: #ff5722;
  border-radius: 10px;
  padding: 3px;
  color: #fff;
}
.wrapper .icon-readyed {
  background: #e6e6e6;
}
.wrapper .why-our {
  width: 100%;
  background-color: #F9F9FA;
  padding: 2px 0;
}
.wrapper .introductionPage-title {
  padding: 1.2rem 0px 1.2rem 0;
  text-align: center;
}
.wrapper .introductionPage-title .big_title {
  font-size: 0.64rem;
  color: #444444;
  font-weight: 200;
}
.wrapper .introductionPage-title .two_title {
  font-size: 0.4rem;
  color: #868686;
  margin-top: 20px;
}
.wrapper .introductionPage-title .two_title span {
  font-size: 0.72rem;
  color: #ffae4d;
  margin: 0 8px;
}
.wrapper .moublBox {
  background: #fff;
}
.wrapper .moublBox.moublindex {
  padding-bottom: 60px;
}
.wrapper .moublBox .moubl-sort {
  margin-bottom: 20px;
  text-align: center;
}
.wrapper .moublBox .moubl-sort li {
  float: inherit !important;
  display: inline-block !important;
}
.wrapper .moublBox .moublbtn-sort {
  position: relative;
  text-align: center;
  line-height: 70px;
  width: 94%;
  margin: 0 3% 10px;
  height: 70px;
  display: block;
  background: #e8e8e8;
}
.wrapper .moublBox .moublbtn-sort p {
  font-size: 0.36rem;
  color: #444444;
}
.wrapper .moublBox .moublbtn-sort:after {
  display: block;
  content: '';
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .moublBox .moublbtn-sort.colorbg-one {
  background: #f9dfea;
}
.wrapper .moublBox .moublbtn-sort.colorbg-two {
  background: #cfeaff;
}
.wrapper .moublBox .moublbtn-sort.colorbg-three {
  background: #fff5d2;
}
.wrapper .moublBox .moublbtn-sort.colorbg-foue {
  background: #e7e2ff;
}
.wrapper .moublBox .moublbtn-sort.colorbg-five {
  background: #eaffe2;
}
.wrapper .moublBox .moublbtn-sort:hover:after {
  height: 100%;
}
.wrapper .moublBox .opendesignbtn {
  text-align: center;
  padding: 20px;
}
.wrapper .moublBox .opendesignbtn .layui-btn {
  padding: 0 80px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
}
.wrapper .show_place:last-child {
  margin-right: 0px;
}
.wrapper .show_place .small-icon {
  width: 110px;
  height: 110px;
  float: left;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .show_place:nth-child(1) .small-icon {
  background: url(../images/whyicon.png) -3px -13px no-repeat;
}
.wrapper .show_place:nth-child(2) .small-icon {
  background: url(../images/whyicon.png) -117px -13px no-repeat;
}
.wrapper .show_place:nth-child(3) .small-icon {
  background: url(../images/whyicon.png) -232px -13px no-repeat;
}
.wrapper .show_place:nth-child(4) .small-icon {
  background: url(../images/whyicon.png) -345px -13px no-repeat;
}
.wrapper .show_place .wenan {
  float: left;
  padding: 16px 0 0 16px;
}
.wrapper .show_place .wenan .big-wenan {
  font-size: 0.44rem;
  color: #444444;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .show_place .wenan .small-wenan {
  font-size: 14px;
  color: #666666;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .show_place {
  margin-top: 20px;
  float: left;
  border-radius: 4px;
}
.wrapper .show_place a {
  display: block;
}
.wrapper .show_place a img {
  float: left;
}
.wrapper .show_place a:hover .small-icon {
  background-position-y: -142px;
}
.wrapper .show_place a:hover .wenan p {
  animation: flipInX 0.5s 0.1s ease-in-out both;
  -webkit-animation: flipInX 0.5s 0.1s ease-in-out both;
  -moz-animation: flipInX 0.5s 0.1s ease-in-out both;
}
.wrapper .collection {
  width: 508px;
  height: 123px;
  background: #ffffff;
  box-shadow: 0px 0px 18px rgba(255, 120, 126, 0.16);
  border-radius: 8px;
  margin: 0 auto 60px auto;
  font-size: 26px;
  font-weight: bold;
  color: #444444;
  line-height: 123px;
  text-align: center;
  position: relative;
  user-select: none;
}
.wrapper .collection a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  opacity: 0;
}
.wrapper .collection span {
  background: url(../images/small-icon-all-v3.png) 0px 0px no-repeat;
  display: inline-block;
  width: 228px;
  height: 70px;
  vertical-align: -24px;
  margin: 0 18px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .sub-title {
  color: #444444;
  font-size: 0.6rem;
  text-align: center;
  font-weight: 200;
  margin-top: 1.8rem;
  margin-bottom: 1.24rem;
}
.wrapper .sosoBox {
  position: relative;
  height: 100px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .soso {
  padding: 20px 0;
  width: 640px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -320px;
}
.wrapper .soso input {
  display: block;
  border: 0;
  background: #e7e7e7;
  width: 100%;
  height: 50px;
  padding: 10px 170px 10px 20px;
  color: #444;
  border-radius: 30px;
}
.wrapper .soso input:focus {
  border: 1px solid #009cff;
}
.wrapper .soso .so-btn {
  display: block;
  line-height: 50px;
  position: absolute;
  top: 20px;
  right: 0;
  background: #009cff;
  color: #fff;
  width: 120px;
  height: 50px;
  border-radius: 0 30px 30px 0;
  text-align: center;
}
.wrapper .soso .so-btn .layui-icon {
  font-size: 36px;
}
.wrapper .soso .so-btn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.wrapper .soso .so-text {
  padding: 5px 30px;
}
.wrapper .soso .so-text a {
  display: inline-block;
  padding: 5px;
  margin: 0 10px;
  color: #868686;
}
.wrapper .soso .so-text a:hover {
  color: #009cff;
}
.wrapper .soso .sosodelbtn {
  cursor: pointer;
  border: 1px solid #777777;
  color: #777;
  position: absolute;
  top: 33px;
  right: 135px;
  border-radius: 30px;
  padding: 2px;
  z-index: 1;
  display: none;
}
.wrapper .soso .sosodelbtn:hover {
  background: #777777;
  color: #fff ;
}
.wrapper .subBox .mycontBox {
  padding: 0;
  position: relative;
}
.wrapper .subBox .mycontBox.padding-top {
  padding-top: 15px;
}
.wrapper .subBox .mycontBox.no-border {
  border: 0;
}
.wrapper .subBox .mycontBox.no-padding-top {
  padding-top: 0;
}
.wrapper .subBox .mycontBox .layui-form-item {
  clear: none;
  margin: 10px 0 10px 0;
}
.wrapper .subBox .mycontBox .layui-form-item .sheji-w-set {
  width: 150px;
}
.wrapper .subBox .mycontBox .layui-form-item .time-w-set {
  width: 130px;
}
.wrapper .subBox .mycontBox .layui-card {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  top: 0;
  box-shadow: 0 0 5px 1px rgba(179, 179, 179, 0.5);
}
.wrapper .subBox .mycontBox .layui-card:hover {
  top: -8px;
}
.wrapper .subBox .mycontBox .layui-cardul-box {
  padding: 10px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .info-img {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
  height: 150px;
  overflow: hidden;
  display: block;
  position: relative;
}
.wrapper .subBox .mycontBox .layui-cardul-box .info-img img {
  width: 100%;
  height: 100%;
}
.wrapper .subBox .mycontBox .layui-cardul-box .info-img .long-image-jdt {
  position: absolute;
  top: 5px;
  height: 3px;
  background: rgba(219, 211, 211, 0.8);
  display: none;
  z-index: 10;
  border-radius: 3px;
  margin-left: 5px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .info-img .long-image-3d-show {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.wrapper .subBox .mycontBox .layui-cardul-box .info-img .long-image-3d-show .long-image-3d {
  width: 100%;
  position: absolute;
  height: 7500px;
  top: 0;
}
.wrapper .subBox .mycontBox .layui-cardul-box .suoBox {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.4);
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .userinfo-design {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  filter: alpha(opacity=0);
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt {
  padding: 2px 45px 2px 0;
  position: relative;
  display: block;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .bi-icon {
  position: absolute;
  top: 7px;
  right: 45px;
  display: none;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .del-icon {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 24px;
  height: 24px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .del-icon i {
  font-size: 20px;
  color: #868686;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .del-icon:hover i {
  color: #009cff;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .mony-icon {
  position: absolute;
  top: 13px;
  right: 5px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .mony-icon i {
  font-size: 14px;
  color: #868686;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .mony-icon i:before {
  margin-right: 2px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .txt-set {
  display: block;
  border: 1px solid #fff;
  padding: 5px 20px 5px 0;
  width: 100%;
  height: 24px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .txt-set:hover {
  border-bottom: 1px dashed #666;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .txt-set:focus {
  border: 1px solid #009cff;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .txt-setBox:hover .bi-icon {
  display: block;
}
.wrapper .subBox .mycontBox .layui-cardul-box .fenl-time {
  padding-top: 5px;
  height: 21px;
  padding-right: 90px;
  position: relative;
}
.wrapper .subBox .mycontBox .layui-cardul-box .fenl-time span {
  color: #868686;
  font-size: 12px;
  margin-left: 12px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wrapper .subBox .mycontBox .layui-cardul-box .fenl-time span.fl {
  width: 100%;
}
.wrapper .subBox .mycontBox .layui-cardul-box .fenl-time span.fr {
  position: absolute;
  right: 0;
  display: none;
}
.wrapper .subBox .mycontBox .layui-cardul-box .fenl-time span:first-child {
  margin-left: 0;
}
.wrapper .subBox .mycontBox .layui-cardul-box .fenl-time .icon-padding {
  padding-right: 3px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .free-user {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  opacity: 1;
  transition: opacity .5s ease;
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .app-icon {
  right: inherit;
  left: 0;
}
.wrapper .subBox .mycontBox .layui-cardul-box:hover .free-user {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .subBox .mycontBox .layui-cardul-box:hover .userinfo-design {
  opacity: 1;
  filter: alpha(opacity=100);
}
.wrapper .subBox .mycontBox .img-maskBox {
  width: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .subBox .mycontBox .img-maskBox:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.wrapper .subBox .mycontBox .img-maskBox .img-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition: opacity .4s ease;
}
.wrapper .subBox .mycontBox .img-maskBox .mask-icon {
  padding: 20px;
  position: absolute;
  top: 0;
  width: 100%;
}
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .layui-keep-icon,
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .del-btn-icon {
  margin-right: 15px;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background-color: #fff;
}
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .iconfont {
  font-size: 28px;
  color: #868686;
}
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .activekeep .iconfont,
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .del-btn-icon:hover .iconfont {
  color: #f14c48;
}
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .activeblue .iconfont,
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .del-btn-icon:hover .iconfont {
  color: #07aefc;
}
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .mask-btnset {
  width: 100%;
  border-radius: 4px;
  width: 50px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
  background: #07aefc;
  text-align: center;
}
.wrapper .subBox .mycontBox .img-maskBox .mask-icon .mask-btnset:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.wrapper .subBox .mycontBox .img-maskBox .goeitBox {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -60px;
}
.wrapper .subBox .mycontBox .img-maskBox .goeitBox .layui-btn {
  width: 120px;
  height: 35px;
  line-height: 35px;
}
.wrapper .subBox .mycontBox .design-editorBox .img-maskBox .mask-icon .layui-keep-icon {
  display: none;
}
.wrapper .subBox .mycontBox .mould-Box .layui-cardul-box .ul-txt {
  padding-right: 85px;
}
.wrapper .subBox .mycontBox .mould-Box .layui-cardul-box .ul-txt .txt-set:hover {
  border: 1px solid #fff;
}
.wrapper .subBox .mycontBox .mould-Box .layui-cardul-box .ul-txt .bi-icon {
  display: none!important;
}
.wrapper .subBox .mycontBox .kong-box {
  top: 100px;
  position: absolute;
  margin: 0 0 0 -110px;
  left: 50%;
  text-align: center;
}
.wrapper .subBox .mycontBox .kong-box .tofav-span {
  position: relative;
  font-size: 14px;
  color: #666666;
  display: block;
  line-height: 19px;
  margin: 20px 0;
}
.wrapper .subBox .mycontBox .kong-box .tofav {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 200px;
  height: 36px;
  background-color: #009cff;
  font-size: 16px;
  line-height: 36px;
  display: block;
  color: #FFFFFF;
  text-align: center;
  border-radius: 4px;
  margin: 0 auto;
  cursor: pointer;
}
.wrapper .subBox .mycontBox .kong-box .tofav:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.wrapper .subBox .mycontBox .project-table {
  padding: 20px;
}
.wrapper .subBox .mycontBox .project-table .layui-btn.layui-btn-sm {
  padding: 0 30px;
}
.wrapper .subBox .mycontBox .project-table .pagination {
  text-align: left;
}
.wrapper .subBox .mycontBox .title_vedio_qxh {
  text-align: center;
}
.wrapper .subBox .mycontBox .title_vedio_qxh h5 {
  position: relative;
  margin-bottom: 20px;
  font-size: 32px;
  z-index: 1;
  color: #313131;
}
.wrapper .subBox .mycontBox .title_vedio_qxh .sub_title_vedio_qxh {
  font-size: 16px;
  color: #919191;
}
.wrapper .subBox .mycontBox .search_vedio_qxh {
  text-align: right;
  margin-top: 15px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.wrapper .subBox .mycontBox .search_vedio_qxh input {
  color: #999;
  font-size: 12px;
  overflow: hidden;
  width: 250px;
  height: 28px;
  line-height: 28px;
  border: none;
  box-shadow: none;
  background-color: #f4f4f4;
  padding-left: 10px;
  padding-right: 30px;
}
.wrapper .subBox .mycontBox .search_vedio_qxh .so-btn {
  position: relative;
  right: 30px;
  top: 2px;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh {
  position: relative;
  min-height: 1px;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh .vedio_content_qxh {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  border: 1px solid #e4ecf3;
  background-color: #fff;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh .vedio_content_qxh:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh .vedio_content_qxh .vedio_content_img_qxh {
  width: 100%;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh .vedio_content_qxh .vedio_content_img_qxh a {
  width: 100%;
  display: inline-block;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh .vedio_content_qxh .vedio_content_img_qxh a .vedio_img {
  width: 100%;
  height: 180px;
  display: inline-block;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh .vedio_content_qxh .vedio_content_info_qxh .vedio_content_info_title_qxh {
  margin-top: 10px;
  padding: 0 0 10px 0 ;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 20px;
}
.wrapper .subBox .mycontBox .vedio_in_qxh .vedio_content_all_qxh .vedio_content_qxh .vedio_content_info_qxh .vedio_content_info_user_qxh {
  position: relative;
  color: #c1c1c1;
}
.wrapper .subBox .mycontBox .player_in_qxh {
  overflow: hidden;
}
.wrapper .subBox .mycontBox .player_in_qxh .player_watch_qxh {
  position: relative;
  padding: 0;
  background-color: #000;
}
.wrapper .subBox .mycontBox .player_in_qxh .player_watch_qxh .embed-responsive-16by9 {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  margin: -40px 0 -35px 0;
  padding-bottom: 56.25%;
}
.wrapper .subBox .mycontBox .player_in_qxh .player_watch_qxh .embed-responsive-16by9 iframe {
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0px;
  position: absolute;
  left: 0;
  top: 0;
}
.wrapper .subBox .mycontBox .player_info_qxh {
  margin-top: 40px;
}
.wrapper .subBox .mycontBox .player_info_qxh .player_info_title {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.wrapper .subBox .mycontBox .player_info_qxh .player_info_title h1 {
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  overflow: hidden;
  /*超出部分隐藏*/
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
  word-wrap: break-word;
}
.wrapper .subBox .mycontBox .player_info_qxh .player_info_title small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
  font-size: 65%;
}
.wrapper .subBox .mycontBox .player_info_in_qxh {
  padding: 15px;
  border: 1px solid #e4ecf3;
}
.wrapper .subBox .mycontBox .player_info_in_qxh div {
  margin-bottom: 20px;
}
.wrapper .subBox .fenleiBox {
  background: #fff;
}
.wrapper .subBox .fenleiBox .paixuBox {
  width: 100%;
  padding: 20px 5px 20px  65px;
  margin-bottom: 10px;
  position: relative;
}
.wrapper .subBox .fenleiBox .paixuBox .paixuBox-title {
  color: #444;
}
.wrapper .subBox .fenleiBox .paixuBox .paixuBox-title:first-child {
  position: absolute;
  top: 20px;
  left: 5px;
}
.wrapper .subBox .paixuBox {
  padding: 5px;
  width: 420px;
}
.wrapper .subBox .paixuBox.border-right {
  border-right: 1px solid #e0e0e0;
}
.wrapper .subBox .paixuBox .paixuBox-title {
  display: inline-block;
  color: #a4a4a4;
  font-size: 14px;
  padding: 3px 10px;
  margin: 5px;
}
.wrapper .subBox .paixuBox .paixuBox-title.active,
.wrapper .subBox .paixuBox .paixuBox-title:hover {
  color: #fff;
  background: #009cff;
  border-radius: 30px;
}
.wrapper .subBox .paixuBox .paixuBox-title:first-child {
  background: none!important;
  padding-left: 0;
  margin-right: 0;
  color: #444!important;
}
.wrapper .subBox .new-iconBox {
  display: block;
  text-align: center;
  margin-top: 0.4rem;
}
.wrapper .subBox .new-iconBox .add-svg {
  opacity: 0.5;
  filter: alpha(opacity=50);
  margin: 0 auto 20px;
  width: 120px;
  height: 120px;
  background: url(../images/add.svg) 100% 100% no-repeat;
}
.wrapper .subBox .new-iconBox:hover p {
  color: #009cff;
}
.wrapper .subBox .layui-form-item.set-width .layui-form-label {
  width: 45px;
}
.wrapper .myvip-box {
  background: #fff;
  padding: 30px;
}
.wrapper .myvip-box .vip-title {
  font-size: 26px;
  font-weight: bold;
  color: #009cff;
  text-align: center;
}
.wrapper .myvip-box .vip-subtitle {
  font-size: 14px;
  margin: 20px auto;
  text-align: center;
}
.wrapper .myvip-box .layui-tab {
  text-align: center !important;
}
.wrapper .myvip-box .layui-tab-title {
  display: inline-block;
  border: 0;
  margin: 0 auto 20px;
  width: 194px;
  height: 40px;
  font-size: 16px;
  color: #009cff;
  border: 1px solid #009cff;
  border-radius: 5px;
  overflow: hidden;
}
.wrapper .myvip-box .layui-tab-title .layui-this {
  background: #009cff;
  color: #fff;
  border-radius: 5px 0 0 5px;
}
.wrapper .myvip-box .layui-tab-title .layui-this:after {
  display: none;
}
.wrapper .myvip-box .layui-tab-title .vip-tab-titleR.layui-this {
  border-radius: 0 5px 5px 0;
}
.wrapper .myvip-box .fenxian {
  margin-top: 15px;
  color: #009cff;
  margin-left: 10px;
  font-size: 12px;
  text-decoration: underline;
}
.wrapper .myvip-box .fenxian:hover {
  color: #ff6858;
}
.wrapper .myvip-box .vip-leve {
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 0 10px 0px rgba(173, 173, 173, 0.5);
  border-radius: 3px;
  border: 1px solid rgba(220, 220, 220, 0.5);
  margin: 0 10px;
  padding: 20px 30px;
}
.wrapper .myvip-box .vip-leve:hover {
  box-shadow: 0px 0 10px 0px #03A9F4;
  border: 1px solid #2196F3;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper .myvip-box .vip-leve .vip-leve-join {
  border-bottom: 1px solid #efefef;
  padding: 0 0 20px 0;
}
.wrapper .myvip-box .vip-leve .vip-leve-title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}
.wrapper .myvip-box .vip-leve .vip-leve-title li {
  font-size: 18px;
}
.wrapper .myvip-box .vip-leve .vip-leve-title i {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -9px;
  margin-right: 5px;
  background: url(../images/1.png) no-repeat;
  background-size: 100%;
}
.wrapper .myvip-box .vip-leve .vip-leve-title i.iconimg2 {
  background: url(../images/2.png) no-repeat;
  background-size: 100%;
}
.wrapper .myvip-box .vip-leve .vip-leve-title i.iconimg3 {
  background: url(../images/3.png) no-repeat;
  background-size: 100%;
}
.wrapper .myvip-box .vip-leve .vip-leve-title i.iconimg4 {
  background: url(../images/4_big.png) no-repeat;
  background-size: 100%;
}
.wrapper .myvip-box .vip-leve .vip-leve-money {
  font-size: 28px;
  color: #009cff;
}
.wrapper .myvip-box .vip-leve .vip-leve-money span {
  font-size: 16px;
  margin: 15px 4px;
}
.wrapper .myvip-box .vip-leve .layui-btn-normal {
  font-size: 14px;
  line-height: 32px;
  height: 32px;
  width: 120px;
}
.wrapper .myvip-box .vip-leve .vip-leve-num {
  font-size: 12px;
  margin: 15px;
}
.wrapper .myvip-box .vip-leve .vip-btn-normal {
  background: #e2e2e2;
  color: #868686;
}
.wrapper .myvip-box .vip-leve .vip-leve-info {
  line-height: 1.5em;
}
.wrapper .myvip-box .vip-leve .vip-leve-info .vip-leve-infotxt {
  font-weight: bold;
  margin-top: 20px;
}
.wrapper .myvip-box .vip-leve .vip-leve-info p {
  color: #868686;
  font-size: 12px;
}
.wrapper .mynumber-box .colorfont {
  color: #009cff;
}
.wrapper .mynumber-box .mynumber-center {
  text-align: center;
}
.wrapper .mynumber-box .myunm-btn-ok {
  border: 1px solid #009cff;
  color: #009cff;
  background: #fff;
}
.wrapper .mynumber-box .mynumber-toptitle {
  color: #414141;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}
.wrapper .mynumber-box .mynumber-toptitle i:before {
  font-size: 35px;
  font-weight: normal;
  vertical-align: -6px;
  margin-right: 5px;
}
.wrapper .mynumber-box .mynumber-title {
  color: #313131;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}
.wrapper .mynumber-box .mynumber-title a {
  color: #009cff;
  margin-left: 8px;
  font-weight: normal;
  font-size: 12px;
  text-decoration: underline;
}
.wrapper .mynumber-box .mynumber-title a:hover {
  color: #ff6858;
}
.wrapper .mynumber-box .layui-table {
  margin: 10px 0 50px;
}
.wrapper .mynumber-box .layui-table th {
  text-align: center;
}
.wrapper .layui-table .layui-btn {
  margin: 0 5px 5px 0;
}
.wrapper .myteam-box .team-myinfo {
  background: #fff;
  margin: 5px;
  padding: 20px;
  min-height: 50px;
  position: relative;
}
.wrapper .myteam-box .team-myinfo .layui-btn {
  margin-right: 10px;
}
.wrapper .myteam-box .team-addinfo {
  background: #fff;
}
.wrapper .myteam-box .header-box {
  position: initial;
  margin: 0;
  border: 0;
  padding: 0;
  width: 150px;
}
.wrapper .myteam-box .header-box span {
  font-size: 12px;
}
.wrapper .myteam-box .team-namebox {
  line-height: 1.8em;
  text-align: left;
}
.wrapper .myteam-box .team-namebox li {
  font-size: 12px;
  color: #868686;
}
.wrapper .myteam-box .team-namebox .team-name {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
}
.wrapper .myteam-box .colorfont {
  color: #868686;
  text-align: center;
  float: left;
}
.wrapper .myteam-box .colorfont strong {
  font-weight: bold;
  font-size: 16px;
  color: #444;
}
.wrapper .myteam-box .color-set {
  width: 60px;
  float: left;
  margin-left: 30px;
}
.wrapper .myteam-box .font-set {
  float: left;
  width: 70%;
  margin-left: 15px;
}
.wrapper .myteam-box .font-set .font-see {
  margin: 0 30px 10px 0;
  float: left;
  width: 180px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #cdeffe;
}
.wrapper .myteam-box .font-setup-btn {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -6px;
}
.wrapper .myteam-box .font-setup-btn strong {
  color: #009cff;
}
.wrapper .myteam-box .font-setup-btn strong i:before {
  font-size: 36px;
  vertical-align: -7px;
}
.wrapper .project-box {
  background: #fff;
  padding-top: 10px !important;
}
.wrapper .project-box .layui-form-label {
  width: 50px;
}
.wrapper .project-box .qxhlayer_form .layui-form-label {
  width: 80px;
}
.wrapper .teamimg-box {
  padding-left: 120px !important;
  position: relative;
}
.wrapper .teamimg-box .teamimg-box-title {
  position: absolute;
  top: 20px;
  left: 12px;
}
.wrapper .teamimg-box .img-jpgbox .teamimg-jpg li {
  position: relative;
  float: left;
  width: 140px;
  height: 140px;
  overflow: hidden;
  margin-right: 15px;
  box-shadow: 0 0 5px 1px rgba(179, 179, 179, 0.5);
}
.wrapper .teamimg-box .img-jpgbox .teamimg-jpg li img {
  width: 100%;
}
.wrapper .teamimg-box .img-jpgbox .teamimg-jpg li .icon-del {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: #009cff;
  color: #fff;
}
.wrapper .teamimg-box .img-jpgbox .teamimg-jpg li .icon-del:before {
  font-size: 27px;
}
.wrapper .teamimg-box .img-jpgbox .teamimg-jpg li .icon-del:hover {
  background: #ff6858;
}
.wrapper .teamimg-box .layui-quote-nm {
  border: 1px solid #efefef;
  padding-bottom: 0;
}
.layui-layout-right {
  padding: 0;
  right: 60px;
  background: none;
}
.layui-layout-right .userinfo {
  text-align: center;
}
.web-container .layui-layout-left {
  background: none;
  left: 50%;
  top: 10px;
  margin-left: -240px;
}
.web-container .layui-layout-left .layui-nav-item a {
  text-align: center;
}
.web-container .layui-layout-left .layui-nav-item a:hover {
  color: #009cff;
}
.web-container .layui-logo {
  display: none;
}
.web-container .header.addbg .layui-btn {
  color: #444;
  border: 1px solid #C9C9C9;
}
.web-container .header.addbg .layui-btn.nonebg {
  border: 0;
}
.web-container .header.addbg .layui-btn:hover {
  color: #009cff;
}
.web-container .web-nav {
  position: absolute;
  left: 50px;
  top: -6px;
  z-index: 1;
}
.nomaluserlogin {
  position: absolute;
  right: 50px;
  top: -6px;
  z-index: 1;
}
.mould-center-box .nomaluserlogin {
  top: 15px;
}
.file-openlogin {
  width: 100%;
  height: 100%;
  background: #F1F7FC;
}
.file-openlogin .layui-tab-title li {
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.file-openlogin .form-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 100%;
  text-align: center;
  background-image: -webkit-linear-gradient(#4562e9 0, #56b5fe 100%), -webkit-radial-gradient(18% 84%, #5888f5 2%, #586ef5 60%, #7558f4 100%);
  background-image: -o-linear-gradient(#4562e9 0, #56b5fe 100%), -o-radial-gradient(18% 84%, #5888f5 2%, #586ef5 60%, #7558f4 100%);
  background-image: linear-gradient(#4562e9 0, #56b5fe 100%), radial-gradient(18% 84%, #5888f5 2%, #586ef5 60%, #7558f4 100%);
  background: url(../images/bglogin.jpg) center center no-repeat;
  background-size: 100% 100%;
}
.file-openlogin .form-banner .form-logo {
  position: absolute;
  top: 30px;
  left: 22px;
  display: block;
  width: 150px;
  height: 40px;
  background: url(../images/logow.png) center center no-repeat;
  background-size: cover;
}
.file-openlogin .form-group {
  position: relative;
}
.file-openlogin .form-group .control-label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #868686;
}
.file-openlogin .form-group .new-login-item input {
  padding-left: 35px;
}
.file-openlogin .new-login-btn {
  border: 0;
  margin-top: 20px;
}
.file-openlogin .new-login-item {
  margin-top: 12px;
}
.file-openlogin .file-openlogin-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 30px;
  width: 100%;
  text-align: center;
  color: rgba(10, 18, 32, 0.46);
}
.file-openlogin .file-openlogin-container {
  display: table-cell;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.file-openlogin .file-openlogin-box {
  width: 800px;
  margin: -270px 0 0 -400px;
  position: fixed;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2), 0 26px 24px 0 rgba(12, 23, 44, 0.1);
}
.file-openlogin .file-openlogin-box-bd {
  position: relative;
  width: 100%;
  min-height: 470px;
  padding: 16px 32px 16px 400px;
  text-align: left;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.toplogo {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  top: 0.7rem;
  left: 50%;
  margin-left: 0;
}
.toplogo .form-logo {
  display: block;
  width: 180px;
  height: 39px;
  background: url(../images/logos.png) center center no-repeat;
  background-size: cover;
}
.new-register .layui-form .layui-unselect {
  height: 30px!important;
}
.upimgBox .layui-layer-photos {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 19891033;
  width: 118px;
  height: 118px;
  top: 60px;
  left: 115px;
  position: absolute!important;
}
.upimgBox .layui-layer-photos .layui-layer-phimg img {
  height: 100%;
}
.layui-upload-img {
  width: 92px;
  height: 92px;
  margin: 0 10px 10px 0;
}
.pagination {
  text-align: center;
}
.pagination li {
  display: inline-block;
  color: #444;
  border-radius: 2px;
  border: 1px solid #efefef;
  text-align: center;
}
.pagination li a,
.pagination li span {
  display: block;
  padding: 5px;
  min-width: 25px;
  height: 15px;
  line-height: 15px;
}
.pagination li.active {
  border: 1px solid #009cff;
  background: #009cff;
  color: #fff;
}
.pagination li.disabled,
.pagination li.disabled:hover {
  color: #d2d2d2!important;
  cursor: not-allowed !important;
}
.projectaddBox {
  width: 90%;
  padding: 20px 0;
}
.popBg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: #000;
  filter: alpha(opacity=80);
  opacity: 0.8;
}
.layui-field-title.margin-top30 {
  margin-top: 30px;
}
.layui-nav-child dd.layui-this,
.layui-nav .layui-nav-child dd.layui-this a {
  background: #009cff;
  color: #fff!important;
}
.layui-layout-admin .navBtn {
  top: 7px;
}
.layui-layout-admin .layui-logo {
  top: 10px;
  background: none;
  box-shadow: none;
}
.layui-layout-admin .layui-logo a {
  display: block;
}
.layui-layout-admin .web-nav {
  display: none;
}
.layui-layout-admin .layui-header {
  padding: 0 210px 0 200px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  height: 60px;
}
.layui-layout-admin .layui-header .layui-nav-item a:hover {
  color: #009cff;
}
.layui-layout-admin .layui-header .adminmenu {
  width: 100%;
  padding: 0;
}
.layui-layout-admin .layui-header .layui-btn {
  padding: 0 30px;
  height: 30px;
  line-height: 30px;
  margin-left: 10px;
  border: 1px solid #d8d8d8;
  color: #444;
  background: none;
}
.layui-layout-admin .layui-header .layui-btn.baiseebg {
  border: 1px solid #fff;
}
.layui-layout-admin .layui-header .layui-btn:hover {
  border: 1px solid #009cff;
  color: #009cff;
}
.layui-layout-admin .layui-header.allmouldBox .adminmenu {
  margin-left: 0;
}
.layui-layout-admin .layui-header.allmouldBox .sosoBox {
  height: auto;
  top: 9px;
  left: 50%;
}
.layui-layout-admin .layui-header.allmouldBox .sosoBox .soso {
  top: 0;
  left: 0;
  margin-left: 0;
  padding: 0;
  width: 350px;
}
.layui-layout-admin .layui-header.allmouldBox .sosoBox .soso input {
  padding-right: 80px;
  height: 40px;
  width: 350px;
}
.layui-layout-admin .layui-header.allmouldBox .sosoBox .soso .so-btn {
  line-height: 40px;
  top: 0;
  right: 0;
  width: 75px;
  height: 40px;
}
.layui-layout-admin .layui-header.allmouldBox .sosoBox .soso .so-btn .layui-icon {
  font-size: 24px;
  margin-left: -10px;
}
.layui-layout-admin .layui-header.allmouldBox .sosoBox .soso .so-text {
  display: none;
}
.layui-layout-admin .layui-header .login-nav {
  top: 15px;
}
.layui-layout-admin .layui-header .layui-nav .layui-nav-item.layui-this a {
  color: #009cff;
}
.layui-layout-admin .layui-header .layui-nav-child {
  top: 60px;
}
.layui-layout-admin .layui-header .layui-layout-right .layui-badge-dot {
  margin-left: 3px;
}
.layui-layout-admin .layui-nav {
  background: #fff;
}
.layui-layout-admin .layui-nav .layui-nav-item a {
  color: #444;
  text-align: center;
}
.layui-layout-admin .layui-nav .layui-nav-item.layui-this a {
  color: #fff;
}
.layui-layout-admin .layui-nav .layui-nav-more {
  border-top-color: rgba(107, 107, 107, 0.7);
}
.layui-layout-admin .layui-nav.menutwo {
  top: 60px;
  padding: 0;
}
.layui-layout-admin .layui-nav.menutwo .layui-nav-item {
  height: auto;
  line-height: normal;
}
.layui-layout-admin .layui-nav.menutwo .layui-nav-item .layui-nav-child {
  top: 0;
}
.layui-layout-admin .layui-nav.menutwo .layui-nav-item a {
  color: #fff;
  text-align: center;
}
.layui-layout-admin .layui-nav.menutwo .layui-nav-more {
  border-top-color: #fff;
}
.layui-layout-admin .layui-nav.layui-layout-left .layui-nav-child {
  left: -35px;
}
.layui-layout-admin .layui-nav.layui-layout-left .layui-nav-child a {
  padding: 0 20px;
}
.layui-layout-admin .layui-nav.layui-layout-left .layui-nav-more {
  right: -20px;
}
.layui-layout-admin .layui-body {
  top: 60px;
  left: 200px;
}
.layui-layout-admin .layui-body .layadmin-tabsbody-item {
  bottom: 0px;
}
.layui-layout-admin .layui-footer {
  height: 35px;
  line-height: 35px;
  color: #9a9a9a;
  font-size: 12px;
  left: 0;
  padding: 0;
}
.layui-layout-admin .layui-nav-tree .layui-nav-item a {
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.layui-layout-admin .layui-nav-tree .layui-nav-item a:hover {
  background: #009cff;
  color: #fff;
}
.layui-layout-admin .layui-nav-tree .layui-nav-item a:hover .layui-icon {
  color: #fff;
}
.layui-layout-admin .layui-nav-tree .layui-nav-itemed {
  background: #009cff;
}
.layui-layout-admin .layui-nav-tree .layui-nav-itemed a {
  color: #fff;
}
.layui-layout-admin .layui-nav-tree .layui-nav-itemed .layui-icon {
  color: #fff;
}
.layui-layout-admin .layui-nav-tree .layui-nav-itemed:hover .layui-nav-more,
.layui-layout-admin .layui-nav-tree .layui-nav-itemed .layui-nav-more {
  border-top-color: #009cff !important;
}
.layui-layout-admin .layui-nav-tree .layui-nav-itemed .layui-this,
.layui-layout-admin .layui-nav-tree .layui-nav-itemed .layui-this a {
  background: rgba(0, 156, 255, 0.2) !important;
}
.layui-layout-admin .layui-nav-tree .layui-nav-bar {
  background-color: rgba(0, 0, 0, 0.2);
}
.layui-layout-admin .layui-side {
  background: #fff;
  z-index: 99;
  margin-top: 60px;
  width: 200px;
}
.layui-layout-admin .layui-side .layui-icon {
  position: absolute;
  top: 0;
  font-size: 18px;
  left: 50%;
  margin-left: -57px;
  color: #4f4f4f;
}
.layui-layout-admin .layui-side .iconfont {
  font-size: 30px;
  margin-left: -65px;
}
.layui-layout-admin .layui-side .layui-this .layui-icon {
  color: #fff;
}
.layui-layout-admin .layui-side .layui-nav-item:hover .layui-nav-more {
  border-top-color: #fff;
}
.layui-layout-admin .layui-side .layui-side-scroll {
  width: 200px;
}
.layui-layout-admin .layui-side .layui-side-scroll .layui-nav-tree {
  margin-bottom: 200px;
}
.layui-layout-admin .layui-side .layui-side-scroll .layui-nav-tree .layui-nav-more {
  right: 22px;
}
.layui-layout-admin .header-box {
  position: fixed;
  text-align: center;
  border-top: 1px solid #f7f7f7;
  width: 200px;
  margin: 0 auto ;
  padding-top: 20px;
  bottom: 0;
  background: #fff;
}
.layui-layout-admin .header-box .header-info {
  margin-top: 10px 0;
}
.layui-layout-admin .header-box .useravatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
.layui-layout-admin .header-box .header-name {
  color: #444444;
  font-size: 16px;
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
}
.layui-layout-admin .header-box .header-id {
  color: #AEAEAE;
  font-size: 12px;
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
}
.layui-layout-admin .header-box .showintegral {
  width: 150px;
  height: 18px;
  font-size: 12px;
  margin: 10px auto;
  line-height: 18px;
  display: flex;
  justify-content: center;
}
.layui-layout-admin .header-box .showintegral .qiandao {
  width: 39px;
  height: 18px;
  line-height: 18px;
  margin-left: 5px;
  background: #009cff;
  background: linear-gradient(90deg, #5ea2ff, #00e3ff);
  border-radius: 2px;
  font-size: 12px;
  color: #fff;
}
.layui-layout-admin .header-box .showintegral .qiandao:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.layui-layout-admin .header-box .showintegral .qiandao.signokbtn {
  background: #fff;
  color: #adadad;
  border: 1px solid;
}
.layui-layout-admin .header-box .content-left-btn {
  display: block;
  margin: 12px auto 30px;
  width: 120px;
  height: 36px;
  color: #FFFFFF;
  line-height: 36px;
  text-align: center;
  border-radius: 30px;
  background: #009cff;
}
.layui-layout-admin .header-box .content-left-btn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.wrapper .new_soso .sosoBox {
  height: 60px;
}
.wrapper .new_soso .sosoBox .soso {
  padding: 5px 0;
}
.wrapper .new_soso .sosoBox .soso .so-btn {
  top: 5px;
}
.wrapper .new_soso .sosoBox .soso .sosodelbtn {
  top: 18px;
}
.memberleve_1,
.memberleve_2,
.memberleve_3,
.memberleve_4 {
  margin: 12px auto 20px;
  width: 120px;
  height: 36px;
  line-height: 34px;
  border-radius: 30px;
  box-sizing: border-box;
  border: 1px solid #009cff;
  font-weight: bold;
  text-align: center;
  color: #009cff;
  font-size: 14px;
}
.memberleve_1 i,
.memberleve_2 i,
.memberleve_3 i,
.memberleve_4 i {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -10px;
  margin-right: 4px;
  background: url(../images/1.png) no-repeat;
  background-size: 100%;
}
.memberleve_1.memberleve_2 i,
.memberleve_2.memberleve_2 i,
.memberleve_3.memberleve_2 i,
.memberleve_4.memberleve_2 i {
  background: url(../images/2.png) no-repeat;
  background-size: 100%;
}
.memberleve_1.memberleve_3 i,
.memberleve_2.memberleve_3 i,
.memberleve_3.memberleve_3 i,
.memberleve_4.memberleve_3 i {
  background: url(../images/3.png) no-repeat;
  background-size: 100%;
}
.memberleve_1.memberleve_4 i,
.memberleve_2.memberleve_4 i,
.memberleve_3.memberleve_4 i,
.memberleve_4.memberleve_4 i {
  background: url(../images/4_big.png) no-repeat;
  background-size: 100%;
}
.userinfo {
  padding: 0;
}
.userinfo .ring-title {
  height: 45px;
  background: #F6F6F6;
}
.userinfo .ring-title p {
  padding-top: 4px;
  text-indent: 23px;
  height: 25px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 150px;
  line-height: 30px;
  color: #666;
}
.userinfo .ring-title .memberleve_1,
.userinfo .ring-title .memberleve_2,
.userinfo .ring-title .memberleve_3,
.userinfo .ring-title .memberleve_4 {
  border: 0;
  padding-top: 3px;
  margin: auto;
}
.userinfo .iconfont {
  position: absolute;
  top: 0;
  font-size: 26px;
  left: 50%;
  margin-left: -57px;
  color: #4f4f4f;
}
.userinfo a:hover .iconfont {
  color: #009cff;
}
.layui-nav-item .infonum {
  position: relative;
}
.layui-nav-item .infonum:before {
  content: attr(num);
  width: 15px;
  height: 15px;
  position: absolute;
  top: 13px;
  left: 33px;
  color: #fff;
  background-color: red;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 15px;
}
.layui-nav-item .infonum .layui-icon {
  font-size: 26px;
}
.layui-tab-brief > .layui-tab-title .layui-this:after,
.layui-tab-brief > .layui-tab-more li.layui-this:after {
  border-bottom: 2px solid #009cff;
}
.layui-form-select dl dd.layui-this {
  background: #009cff;
}
.mould-center-box .layui-nav-tree .layui-nav-item a {
  text-align: left;
  padding-left: 50px;
}
.mould-center-box .layui-side .iconfont {
  margin-left: -85px;
}
.layui-layout-admin .layui-body .layadmin-header {
  display: block;
}
.layui-layout-admin .layui-body .layadmin-header .layui-breadcrumb {
  border-left: 1px solid #efefef;
}
#openclosebtn {
  position: fixed;
  top: 60px;
  left: 200px;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.layui-layout-sidebox .layui-side {
  left: -200px !important;
}
.layui-layout-sidebox .layui-body {
  left: 0 !important;
}
.layui-layout-sidebox .layui-icon-spread-left,
.layui-layout-sidebox .layui-icon-shrink-right,
.layui-layout-sidebox #openclosebtn {
  left: 0;
}
.to-login-register-tit {
  padding: 0 15px 0 20px;
  font-size: 18px;
  color: #282d32;
  line-height: 18px;
}
.to-login-register-tit a {
  float: right;
  font-size: 14px;
  color: #07aefc;
}
.to-login-register-tit a i {
  display: inline-block;
  margin-left: 8px;
  width: 18px;
  height: 18px;
  float: right;
}
.bullet-box {
  width: 380px;
  margin: 30px auto 0;
  position: relative;
  background: #fff;
}
.sign-line {
  width: 545px;
  height: 45px;
  margin: 30px auto 0px;
  position: relative;
  background: linear-gradient(#ff787e, #ff787e) no-repeat;
  background-size: 95% 1px;
  background-position: 5px 50%;
}
.sign-day {
  float: left;
  width: 45px;
  height: 45px;
  line-height: 60px;
  margin-right: 32px;
  background-image: url('../images/imgsign.png');
  background-repeat: no-repeat;
  background-size: 212px;
  background-position: 1px -13px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #ff787e;
  position: relative;
  text-align: center;
}
.signed-day {
  position: absolute;
  top: -13px;
  left: -13px;
  width: 68px;
  height: 61px;
  opacity: 0;
  text-align: center;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transform: scale(2) translate3d(0px, 0px, 100px);
  transition: all 0.5s ease-in;
  line-height: 91px;
  background-image: url('../images/imgsign.png');
  background-repeat: no-repeat;
  background-size: 235px;
  background-position: -170px 4px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #999999;
}
.signed {
  width: 45px;
  height: 45px;
  line-height: 62px;
  background-color: white;
  background-image: url('../images/imgsign.png');
  background-repeat: no-repeat;
  text-align: center;
  background-size: 209px;
  background-position: -45px -15px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #999999;
}
.signed-dayok {
  opacity: 1;
  transform: scale(1) translate3d(0px, 0px, 0px);
}
.week-day {
  width: 535px;
  height: 16px;
  margin: 16px auto 0px;
}
.week-day .day {
  width: 44px;
  height: 16px;
  float: left;
  margin-right: 33px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #666666;
  line-height: 16px;
}
.week-day .day:last-child {
  margin-right: 0px;
}
.layui-table[lay-size="lg"] th,
.layui-table[lay-size="lg"] td {
  padding: 10px;
}
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}
.slide_container {
  position: relative;
  float: left;
  width: 100%;
}
.slide {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.slide li {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.slide img {
  display: block;
  position: relative;
  z-index: 1;
  height: auto;
  width: 100%;
  border: 0;
}
.slide .caption {
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 20px;
  text-shadow: none;
  color: #fff;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  margin: 0;
  max-width: none;
}
.slide_nav {
  position: absolute;
  -webkit-tap-highlight-color: transparent;
  top: 52%;
  left: 0;
  opacity: .7;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url(../images/themes.png) no-repeat left top;
  margin-top: -45px;
  display: none;
}
.slide_container:hover .slide_nav {
  display: block;
}
.slide_nav:active {
  opacity: 1;
}
.slide_nav.next {
  left: auto;
  background-position: right top;
  right: 0;
}
.loadmain {
  width: 100%;
  height: auto;
}
.loadmain a {
  display: block;
  text-align: center;
  font-size: 20px;
  margin-top: 200px;
}
.loadmain .loadEffect {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 100px auto;
}
.loadmain .loadEffect span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #21aff3;
  position: absolute;
  -webkit-animation: load 1.04s ease infinite;
}
@-webkit-keyframes load {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.loadmain .loadEffect span:nth-child(1) {
  left: 0;
  top: 50%;
  margin-top: -8px;
  -webkit-animation-delay: 0.13s;
}
.loadmain .loadEffect span:nth-child(2) {
  left: 14px;
  top: 14px;
  -webkit-animation-delay: 0.26s;
}
.loadmain .loadEffect span:nth-child(3) {
  left: 50%;
  top: 0;
  margin-left: -8px;
  -webkit-animation-delay: 0.39s;
}
.loadmain .loadEffect span:nth-child(4) {
  top: 14px;
  right: 14px;
  -webkit-animation-delay: 0.52s;
}
.loadmain .loadEffect span:nth-child(5) {
  right: 0;
  top: 50%;
  margin-top: -8px;
  -webkit-animation-delay: 0.65s;
}
.loadmain .loadEffect span:nth-child(6) {
  right: 14px;
  bottom: 14px;
  -webkit-animation-delay: 0.78s;
}
.loadmain .loadEffect span:nth-child(7) {
  bottom: 0;
  left: 50%;
  margin-left: -8px;
  -webkit-animation-delay: 0.91s;
}
.loadmain .loadEffect span:nth-child(8) {
  bottom: 14px;
  left: 14px;
  -webkit-animation-delay: 1.04s;
}
.loadmain .load-doing {
  position: absolute;
  bottom: -30px;
  left: 12px;
}
.iframeBox {
  width: 100%;
  height: 860px;
}
iframe .loginBox .ui-dialog {
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -400px;
}
@media (max-width: 1440px) {
  .wrapper .conMain {
    width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 1220px) {
  .wrapper .videoBox {
    background-size: 100%;
    background: none;
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .wrapper .videoBox .vioinfo {
    box-shadow: 0 1px 10px #afafaf;
    width: 96%;
    height: auto;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 1%;
    margin: 1%;
  }
  .wrapper .myvip-box .vip-leve .layui-btn-normal {
    width: 80%;
    padding: 0;
  }
  .wrapper .subBox .new-iconBox {
    margin-top: 5px;
  }
}
@media (min-width: 980px) {
  .menutwo,
  .popBg {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .px-foot-logo {
    padding-left: 0;
  }
  .px-foot-code {
    float: right;
  }
  .px-foot-container {
    padding: 0 10px;
  }
  .px-body-content {
    padding: 20px 10% 40px 10%;
  }
  .table-panel-ul.px-programme .item {
    width: 50%;
  }
  .wrapper .subBox .new-iconBox .add-svg {
    -webkit-transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
    margin-bottom: 0;
  }
}
@media (max-width: 980px) {
  .wrapper .conMain {
    width: 100%;
    padding: 0 10px;
  }
  .wrapper .bannerBox .banimgBox img {
    width: 100%;
  }
  .wrapper .navBtn {
    display: block;
  }
  .wrapper .fiveiconBox .fiveicon-list li {
    width: 31%;
  }
  .wrapper .downbaner .banner {
    padding: 30px 20px;
  }
  .wrapper .header .nav,
  .wrapper .layui-header .nav {
    display: none;
  }
  .wrapper .product-advBox .advBox .iconbg {
    width: 100px;
    height: 100px;
    line-height: 78px;
  }
  .myteam-box .layui-col-xs6 {
    width: 100%;
  }
  .wrapper .myteam-box .font-setup-btn {
    text-align: center;
  }
  .wrapper .myteam-box .font-setup-btn span {
    display: block;
  }
  .layui-layout-admin .layui-header.allmouldBox .sosoBox {
    margin-left: -100px;
  }
  .wrapper .layui-layout-admin .navBtn {
    top: 8px;
    right: 0;
  }
  .nomaluserlogin {
    right: 60px;
    top: -12px;
  }
}
@media (max-width: 1024px) {
  .wrapper .videopos {
    height: 400px;
  }
}
@media (max-width: 950px) {
  .wrapper .advBox .advimg img {
    width: 100%;
  }
}
@media (max-width: 870px) {
  .wrapper .Rule .text .pcimg img {
    width: 100%;
  }
  .wrapper .dataBox .data-right li {
    margin-bottom: 20px;
  }
  .wrapper .advBox .advBox-list .w5 img {
    width: 100%;
  }
  .wrapper .advBox .advBox-list .w5.noimgW img {
    width: auto;
  }
  .wrapper .functionBox .fuc-pc {
    width: 100%;
  }
  .wrapper .functionBox .fuc-pc img {
    width: 100%;
  }
  .wrapper .myvip-box .vip-leve .layui-btn-normal {
    width: 50%;
    line-height: 40px;
    height: 40px;
  }
  .web-container .web-nav {
    left: 10px;
  }
}
@media (max-width: 768px) {
  .px-head-title > .content {
    top: 10px;
  }
  .px-article .px-article-img {
    padding: 30px 0;
  }
  .px-product .px-product-head .product-row-left {
    width: 50%;
    padding-left: 0;
  }
  .px-product .px-product-head .product-row-left.img-list {
    width: 100%;
  }
  .px-product .px-product-head .product-row-right {
    padding-left: 0;
  }
  .px-product .px-product-tabs,
  .px-product .px-product-textlist {
    padding-left: 10px;
  }
  .px-head-title > .content {
    top: 20px;
  }
  .table-panel-list .item {
    width: 50%;
  }
  .px-pagenation {
    width: 410px;
  }
  .px-pagenation .pagenum {
    padding: 3px 3px;
    margin-right: 1px;
  }
  .table-panel-ul .item {
    width: 100%;
  }
  .table-panel-ul.px-programme .item {
    width: 100%;
  }
  .con-w6,
  .con-w4 {
    width: 100%;
  }
  .wrapper .planBox .planinfo:hover .txtinfo {
    top: 28%;
  }
  .wrapper .dataBox .data-right {
    padding: 0 10px;
  }
  .wrapper .allfootBox .footweix {
    display: none;
  }
  .wrapper .allfootBox .footinfo {
    padding: 0;
  }
  .wrapper .allfootBox .allfoot {
    padding: 55px 10px 10px;
  }
  .wrapper .allfootBox .logofoot {
    top: 30px;
    left: 50%;
    margin-left: -68px;
  }
  .wrapper .videoBox {
    height: 430px;
  }
  .wrapper .videopos {
    height: 270px;
  }
  .wrapper .videopos .vioinfo {
    height: 400px;
  }
  .wrapper .show_place .wenan {
    min-width: 200px;
  }
  .wrapper .show_place .wenan .big-wenan {
    font-size: 16px;
  }
  .wrapper .show_place .small-icon {
    width: 88px;
    height: 88px;
    background-size: 410%!important;
  }
  .wrapper .show_place:nth-child(1) .small-icon {
    background-position: 0px -6px;
  }
  .wrapper .show_place:nth-child(2) .small-icon {
    background-position: -89px -6px;
  }
  .wrapper .show_place:nth-child(3) .small-icon {
    background-position: -180px -6px;
  }
  .wrapper .show_place:nth-child(4) .small-icon {
    background-position: -270px -6px;
  }
  .wrapper .show_place a:hover .small-icon {
    background-position-y: -111px;
  }
  .wrapper .soso {
    padding: 20px 0;
    width: 100%;
    position: initial;
    margin-left: 0;
  }
  .wrapper .sosoBox {
    height: auto;
  }
  .wrapper .functionBox .setimgpos-r img,
  .wrapper .wrapper .functionBox .setimgpos-l img {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    transform: scale(0.95);
  }
  .wrapper .teamimg-box .layui-table th,
  .wrapper .teamimg-box .layui-table td {
    padding: 0 10px;
  }
  .wrapper .moublBox .moublbtn-sort p {
    font-size: 16px;
  }
  .toplogo {
    opacity: 1;
    filter: alpha(opacity=100);
    margin-left: -87px;
  }
  .file-openlogin .file-openlogin-box-bd {
    background: none;
  }
  .file-openlogin .file-openlogin-box {
    box-shadow: none;
  }
  .wrapper .videopos .vioinfo {
    height: auto ;
  }
}
@media (max-width: 750px) {
  .wrapper .mt100 {
    margin-top: 20px;
  }
  .wrapper .title {
    padding: 20px 0;
  }
  .wrapper .pb100 {
    padding-bottom: 20px;
  }
  .wrapper .header .layui-btn {
    padding: 0 15px;
  }
  .wrapper .header .nav li:hover .twomenu {
    display: none;
  }
  .wrapper .dataBox .data-bottom li div:before {
    top: -35px;
  }
  .wrapper .dataBox .data-right li {
    margin-bottom: 10px;
    padding: 5px 0;
  }
  .layui-layout-admin .layui-header .layui-btn {
    padding: 0 15px;
  }
  .side {
    display: none;
  }
  .web-container .web-nav {
    top: -6px;
    left: -12px;
    -webkit-transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  .layui-layout-admin .layui-logo {
    width: 170px;
    padding: 2px 0 0 5px;
  }
  .layui-layout-admin .layui-logo img {
    width: 100%;
  }
  .file-openlogin .file-openlogin-box {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .file-openlogin .file-openlogin-box-bd {
    padding: 16px 20px 16px 20px;
  }
  .file-openlogin .form-banner {
    display: none;
  }
}
@media (max-width: 686px) {
  .wrapper .subBox .mycontBox .player_in_qxh .player_watch_qxh .embed-responsive-16by9 {
    margin: unset;
  }
}
@media (max-width: 600px) {
  .wrapper .functionBox .setimgpos-r,
  .wrapper .functionBox .setimgpos-l {
    display: none;
  }
  .wrapper .vipBox .callset a {
    width: 100%;
  }
  .wrapper .collection {
    width: 90%;
    margin: 0 5% 20px;
    font-size: 18px;
    height: 88px;
    line-height: 88px;
  }
  .wrapper .collection span {
    background-position: 0px 20px;
    width: 126px;
    background-size: 199%;
  }
  .layui-carousel {
    height: 400px!important;
  }
  .wrapper .show_place .wenan {
    min-width: auto;
    width: 150px;
  }
  .layui-layer-page {
    width: 100%!important;
    left: 0 !important;
  }
  .wrapper .subBox .mycontBox .layui-form-item .time-w-set {
    width: auto;
  }
  .wrapper .soso .so-btn {
    width: 72px;
  }
  .wrapper .soso .so-btn .layui-icon {
    font-size: 30px;
  }
  .layui-layout-admin .layui-header {
    padding: 0;
  }
  .wrapper .bannerBox .banimgBox {
    margin: 78px 0;
  }
  .wrapper .soso .sosodelbtn {
    right: 85px;
  }
  .wrapper .soso input {
    padding-right: 110px;
  }
}
@media (max-width: 480px) {
  .px-foot-code {
    display: none;
  }
  .px-head-title > .content > .content-title {
    font-size: 16px;
  }
  .px-head-title > .content > .content-line {
    margin-top: 2px;
  }
  .px-foot-address {
    min-width: 0;
  }
  .px-address-msg {
    width: auto;
  }
  .table-panel-list .item {
    width: 100%;
  }
  .wrapper .show_place .wenan {
    width: auto;
  }
  .wrapper .introductionPage-title {
    padding: 25px 0px 10px 0;
  }
  .wrapper .introductionPage-title span {
    font-weight: 400;
  }
  .wrapper .videopos {
    height: 72px;
  }
}
@media (max-width: 414px) {
  .wrapper .videoBox .vioinfo {
    top: 15px;
  }
  .wrapper .layui-carousel-arrow {
    top: 35%;
  }
}
@media (max-width: 375px) {
  .wrapper .videoBox .vioinfo {
    top: 20px;
  }
}
@media (max-width: 320px) {
  .wrapper .videoBox .vioinfo {
    top: 32px;
  }
}
#ALLapp_in {
  position: relative;
  overflow: auto;
  clear: both;
}
#ALLapp_in::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
}
#ALLapp_in::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #d4d4d4;
}
#ALLapp_in::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #EDEDED;
}
.infobase .layui-form-item .layui-input-inline {
  width: 70%;
}
.infobase .avatars .layui-input-inline {
  width: 10%;
}
.projecteaddBox {
  width: 90%;
}
.front_img .layui-layer-photos {
  height: 210px;
}
.qxh_form_position {
  position: absolute;
  top: 60px;
}
.btnadd {
  position: absolute;
  right: -35px;
  top: 5px;
  border: 1px solid transparent;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  background: transparent;
}
.demo-list .layui-col-sm4.layui-col-md3.layui-col-lg3 {
  width: 300px;
}
.wrapper .subBox .mycontBox .mould-Box .layui-cardul-box .ul-txt {
  padding: 2px;
}
.wrapper .subBox .mycontBox .layui-cardul-box .free-user,
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .mony-icon,
.wrapper .subBox .mycontBox .layui-cardul-box .fenl-time {
  display: none;
}
.wrapper .subBox .mycontBox .layui-cardul-box .ul-txt .txt-set {
  padding: 10px 0 2px 0;
  font-size: 18px;
  text-align: center;
  color: #444;
}
