.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.pointer {
    cursor: pointer;
}

body {
    font-size: 14px;
    padding-top: 60px;
    min-width: 1250px;
    margin: 0 auto;
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-no-wrap {
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .justify-content-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .justify-content-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .justify-content-evenly{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
  }
  .align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
  }
  .align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .align-content-start {
    -ms-flex-line-pack: start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
  }
  .align-content-center {
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    align-content: center;
  }
  .align-content-end {
    -ms-flex-line-pack: end;
    -webkit-align-content: flex-end;
    align-content: flex-end;
  }
  .align-content-between {
    -ms-flex-line-pack: justify;
    -webkit-align-content: space-between;
    align-content: space-between;
  }
  .align-content-around {
    -ms-flex-line-pack: distribute;
    -webkit-align-content: space-around;
    align-content: space-around;
  }
  .align-content-stretch {
    -ms-flex-line-pack: stretch;
    -webkit-align-content: stretch;
    align-content: stretch;
  }
  .align-self-auto {
    -ms-flex-item-align: auto;
    -webkit-align-self: auto;
    align-self: auto;
  }
  .align-self-start {
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
  }
  .align-self-center {
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
  }
  .align-self-end {
    -ms-flex-item-align: end;
    -webkit-align-self: flex-end;
    align-self: flex-end;
  }
  .align-self-baseline {
    -ms-flex-item-align: baseline;
    -webkit-align-self: baseline;
    align-self: baseline;
  }
  .align-self-stretch {
    -ms-flex-item-align: stretch;
    -webkit-align-self: stretch;
    align-self: stretch;
  }
.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

header {
    width: 100%;
    height: 60px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
}

header .content {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    cursor: pointer;
}

.loginBtn-box {
    width: 120px;
    height: 60px;
    margin-left: -30px;
}

.register-login-btn {
    height: 60px;
}

.loginBtn-info {
    width: 80px;
    height: 30px;
    background: #2E6BFC;
    opacity: 1;
    border-radius: 4px;
    font-size: 14px;
    color: #FFFFFF;
    color: rgba(255, 255, 255, 1);
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.loginBtn-info:hover {
    background: #249cff;
}

.loginBtn {
    display: none;
}

.userInfo {
    width: 120px;
    height: 60px;
    position: relative;
    cursor: pointer;
    display: none;
}

.userInfo-info {
    width: 120px;
    height: 60px;
}

.userInfo img {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon-crown {
    width: 10px;
    height: 10px;
    top: 0px;
    right: 0px;
    background-size: auto 20px;
    background: red;
    border-radius: 50%;
}

.userInfo .icon-crown {
    display: none;
}

.userInfo .user-name {
    display: block;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #4d4d4d;
    line-height: 17px;
    margin-bottom: 5px;
    width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.userInfo .user-type {
    width: 70px;
    height: 20px;
    background: rgba(227, 237, 255, 1);
    border-radius: 10px;
    color: #6CA0F9;
    font-size: 12px;
}

.userInfo .user-type.experience {
    background: linear-gradient(91deg, #A8A8A8 0%, #909090 100%);
}

.userInfo .user-type.experience span {
    color: #FFF;
}

.userInfo .user-type.experience i {
    border-top: 7px solid #FFF;
}

.userInfo .user-type.preliminary {
    background: linear-gradient(91deg, #B7B2A2 0%, #807758 100%);
}

.userInfo .user-type.preliminary span {
    color: #FFF;
}

.userInfo .user-type.preliminary i {
    border-top: 7px solid #FFF;
}


.userInfo .user-type.basics {
    background: linear-gradient(91deg, #CAD2E0 0%, #A1B6CB 100%);
}

.userInfo .user-type.basics span {
    color: #FFF;
}

.userInfo .user-type.basics i {
    border-top: 7px solid #FFF;
}


.userInfo .user-type.advanced {
    background: linear-gradient(91deg, #A78A82 0%, #6C5751 100%);
}

.userInfo .user-type.advanced span {
    color: #FFF;
}

.userInfo .user-type.advanced i {
    border-top: 7px solid #FFF;
}


.userInfo .user-type.stand {
    background: linear-gradient(91deg, #A9C4E5 0%, #7B9CC4 100%);
}

.userInfo .user-type.stand span {
    color: #FFF;
}

.userInfo .user-type.stand i {
    border-top: 7px solid #FFF;
}

.userInfo .user-type.enterprise {
    background: linear-gradient(91deg, #D5C89D 0%, #A99D72 100%);
}

.userInfo .user-type.enterprise span {
    color: #FFF;
}

.userInfo .user-type.enterprise i {
    border-top: 7px solid #FFF;
}

.userInfo .user-type.group {
    background: linear-gradient(91deg, #8694BE 0%, #526A92 100%);
}

.userInfo .user-type.group span {
    color: #FFF;
}

.userInfo .user-type.group i {
    border-top: 7px solid #FFF;
}
.userInfo .user-type.enjoy {
    background: linear-gradient(91deg, #5A5A6A 0%, #383845 100%);
}

.userInfo .user-type.enjoy span {
    color: #FFF;
}

.userInfo .user-type.enjoy i {
    border-top: 7px solid #FFF;
}

.userInfo .user-type.gold {
    background: linear-gradient(91deg, #D5C89D 0%, #A99D72 100%);
}

.userInfo .user-type.gold span {
    color: #FFF;
}

.userInfo .user-type.gold i {
    border-top: 7px solid #FFF;
}
.userInfo .user-type.diamond {
    background: linear-gradient(91deg, #8694BE 0%, #526A92 100%);
}

.userInfo .user-type.diamond span {
    color: #FFF;
}

.userInfo .user-type.diamond i {
    border-top: 7px solid #FFF;
}
.userInfo .user-type.star {
    background: linear-gradient(91deg, #A98C84 0%, #67524C 100%);
}

.userInfo .user-type.star span {
    color: #FFF;
}

.userInfo .user-type.star i {
    border-top: 7px solid #FFF;
}
.userInfo .user-type.king {
    background: linear-gradient(91deg, #5A5A6A 0%, #383845 100%);
}

.userInfo .user-type.king span {
    color: #FFF;
}

.userInfo .user-type.king i {
    border-top: 7px solid #FFF;
}

.userInfo .user-type img {
    width: 10px;
    height: 10px;
    margin-left: 4px;
}

.userInfo .user-type span {
    font-size: 12px;
    font-weight: 400;
    color: #6CA0F9;
    text-align: center;
}

.userInfo .user-type i {
    width: 0;
    height: 0;
    margin-left: 2px;
    margin-top: 6px;
    border: 6px solid transparent;
    border-top: 7px solid #6CA0F9;
}

.userInfo:hover .pull-down-menu {
    display: block;
}

/* 用户信息 */
header .pull-down-menu {
    position: absolute;
    width: 180px;
    top: 48px;
    left: -59px;
    display: none;
}

header .userInfo .pull-down-menu .tooltip-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    border-color: rgba(255, 255, 255, 1) transparent transparent transparent;
    transform: rotate(180deg);
    margin-top: 0px;
    margin-left: 76px;
}

header .userInfo .pull-down-menu ul {
    width: 100%;
    padding: 0 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 5px 0px rgba(146, 146, 146, 0.5);
}

header .userInfo .pull-down-menu ul .pull-down-menu-li {
    height: 50px;
    padding: 0;
    border-bottom: 1px solid #E8E8E8;
    color: #4D4D4D;
    font-size: 14px;
}

header .userInfo .pull-down-menu ul .pull-down-menu-li span {
    color: #b5b5b5;
    font-size: 12px;
    text-align: center;
    display: block;
}

header .userInfo .pull-down-menu ul .pull-down-menu-li p {
    text-align: center;
    line-height: 50px;
}

header .userInfo .pull-down-menu ul .pull-down-menu-li p i {
    color: rgb(255, 55, 112);
    font-style: inherit;
}

header .userInfo .pull-down-menu ul .pull-down-menu-li p.name {
    line-height: 20px;
    padding-top: 8px;
}

.header .userInfo .col-gray {
    color: #b5b5b5;
    font-size: 12px;
    cursor: pointer;
}

.header .userInfo .col-gray:hover {
    color: #276EF7;
}

header .content .logo {
    height: 34px;
    cursor: pointer;
    margin-right: 72px;
}

header .content nav {
    width: 735px;
}

/*header .content nav:last-child{*/
/*    margin-left: auto;*/
/*}*/
header .content nav a:last-child {
    margin-left: auto;
    padding-right: 50px;
}

header .content nav li {
    margin-right: 50px;
    height: 60px;
    font-size: 14px;
    color: #1D2843;
    line-height: 60px;
    cursor: pointer;
}

header .content nav li:hover .drop-down-list {
    display: block;
}

header .content nav li .drop-down-list {
    width: 150px;
    height: auto;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 50%;
    box-shadow: 0px 6px 12px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    transform: translateX(-50%);
    padding: 10px 0;
    display: none;
}

header .content nav li .drop-down-list::before,
header .content nav li .drop-down-list before {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #fff;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

header .content nav li .drop-down-list::after,
header .content nav li .drop-down-list after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 20px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

header .content nav li .drop-down-list ol {
    color: #3A3E44;
    font-size: 14px;
    text-align: center;
    width: 100%;
    padding: 5px 0;
}

header .content nav li .drop-down-list ol:hover {
    background: #E2EAFF;
}


header .content .login-wrapper {
    height: 60px;
    /*margin-left: 50px;*/
}

header .content .login {
    height: 60px;
}

header .content .register-btn {
    width: 80px;
    height: 30px;
    background: #2E6BFC;
    opacity: 1;
    border-radius: 4px;
    font-size: 14px;
    color: #FFFFFF;
}

header nav li:hover span {
    color: #4d7ef4;
}

header nav li.active {
    color: #4d7ef4;
}

header nav li .drop-down-triangle {
    background-image: url(../images/icon-scene.png);
    width: 10px;
    height: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-left: 5px;
    margin-top: -3px;
}

header nav a:nth-last-of-type(1) li {
    margin-right: 0px;
}

header nav .product-center:hover .temp-key {
    display: block;
}

header nav .promote_community_link:hover .temp-key {
    display: block;
}

.temp-key {
    position: absolute;
    width: 186px;
    height: 300px;
    border: 1px solid #DEE5EB;
    box-shadow: 0px 3px 6px rgba(46, 107, 252, 0.08);
    padding: 8px 24px;
    background: rgba(255, 255, 255, 1);
    top: 57px;
    left: -72px;
    display: none;
}

.box_left:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -9px;
    left: 85px;
    z-index: 3;
}

.box_left:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid #DEE5EB;
    position: absolute;
    top: -10px;
    left: 85px;
}

.temp-key-warp:nth-of-type(2) {
    margin-top: 6px;
}

.temp-key-warp ul {
    width: 377px;
}

.temp-key p {
    font-size: 14px;
    font-weight: 500;
    color: #1D2843;
    width: 42px;
    height: 20px;
    line-height: 20px;
    margin-right: 30px;
    cursor: default
}

.temp-key .item-li {
    font-size: 0;
    color: #8A889A;
    display: block;
    height: 30px;
    line-height: 30px;
    margin: 9px 0;
}

.temp-key .item-li img {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
}

.temp-key .item-li em {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin-left: 10px;
    color: #1D2843;
}

.temp-key .item-li:hover em {
    color: #4d7ef4;
}

footer {
    background: #1F232C;

}

footer .footer-top-box {
    border-bottom: 1px solid #30343E;
}

footer .footer-top {
    width: 1200px;
    margin: 0 auto;
    height: 211px;
    padding-top: 64px;
    position: relative;
}

footer .footer-top .logo img {
    width: 335px;
    display: block;
    margin: 8px auto 0;
}

footer .footer-top .logo p {
    font-size: 12px;
    color: #8A889A;
    margin-top: 18px;
    text-align: center;
}

footer .footer-top .logo p:nth-of-type(2) {
    margin-top: 8px;

}

/* footer .footer-top .qrcode .list:nth-of-type(1) {
    margin-right: 43px;
}

footer .footer-top .qrcode {
    margin-right: 83px;
}

footer .footer-top .qrcode img {
    width: 89px;
}

footer .footer-top .qrcode p {
    font-size: 12px;
    color: #8A889A;
    margin-top: 7px;
    text-align: center; 
} */

footer .footer-top .qrcode {
    padding-right: 200px;
    z-index: 111;
}

footer .footer-top .qrcode .list {
    width: 32px;
    height: 32px;
    background-image: url(../images/icon-footer-wx.png);
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: center center;
    position: relative;
}

footer .footer-top .qrcode .list:nth-of-type(2) {
    margin-top: 9px;
    background-image: url(../images/icon-footer-kf.png);
}

footer .footer-top .qrcode .list-info {
    width: 107px;
    height: 127px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(46, 107, 252, 0.08);
    border-radius: 4px;
    padding-top: 3px;
    display: none;
    position: absolute;
    top: 0;
    left: 44px;
}

footer .footer-top .qrcode .list-info::before{
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 8px solid rgb(255, 255, 255);
    border-bottom: 5px solid transparent;
    display: block;
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
}

footer .footer-top .qrcode .list:last-child .list-info::before{
    top: 53px;
}
footer .footer-top .qrcode .list-info img {
    width: 100px;
    margin: 0 auto;
    display: block;
}

footer .footer-top .qrcode .list-info p {
    font-size: 12px;
    color: #1D2843;
    text-align: center;
}

footer .footer-top .item li {
    margin-top: 11px;
}

footer .footer-top .item li img {
    width: 14px;
    margin-right: 14px;
}

footer .footer-top .item li:nth-of-type(1) img {
    height: 14px;
}

footer .footer-top .item span {
    font-size: 12px;
    color: #8A889A;
    display: block;
}

footer .footer-top .footer-img {
    position: absolute;
    bottom: 0;
}

footer .footer-top .footer-img:nth-of-type(1) {
    margin-left: -527px;
    width: 1054px;
    left: 50%;
    height: 129px;
}

footer .footer-top .text-list {
    margin-left: 42px;
    position: relative;
    z-index: 11;
}

footer .footer-top .text-list li {
    font-size: 12px;
    color: #E2E2E2;
    margin-bottom: 8px;
}

footer .footer-bottom {
    font-size: 12px;
    color: #8A889A;
    height: 68px;
    line-height: 68px;
    text-align: center;
}

footer .footer-bottom a {
    color: #8A889A;
}

footer .footer-bottom .icon-gonganbei {
    height: 16px;
}

footer .list-link-box {
    border-bottom: 1px solid #30343E;
}

footer .list-link {
    width: 1200px;
    margin: 0 auto;
    padding: 8px 0;
    font-size: 12px;
}

footer .list-link a:hover span {
    color: #4D7EF4;
}

footer .list-link span {
    color: #FFFFFF;
    margin-right: 29px;
}

footer .list-link a span {
    color: #8A889A;
}

.return-top {
    width: 90px;
    height: 90px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(46, 107, 252, 0.13);
    border-radius: 50%;
    position: fixed;
    right: 25px;
    bottom: 20%;
    z-index: 101;
    opacity: 0;
    cursor: pointer;
    background-image: url(../images/return-top.png);
    background-position: center center;
    background-size: 35px 50px;
    background-repeat: no-repeat;
}