html,
body {
    width: 100%;
    background: #fff;
    font-size: 14px;
    font-family: "PingFang SC", "Microsoft Yahei", "Wenquanyi Micro Hei",
        sans-serif, "Helvetica Neue", Helvetica, Arial;
}

.flex {
    display: flex;
    display: -webkit-flex;
}

.flex-between {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
}

.transition {
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.border-bottom:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 0.05rem;
    width: 100%;
    background-color: #2611c9;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .border-bottom:after {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) {
    .border-bottom:after {
        -webkit-transform: scaleY(0.33);
        transform: scaleY(0.33);
    }
}

.content {
    padding-top: 70px;
}
.header-bar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 70px;
    background: #fff;
    box-shadow: 0px 0px 1px 0px rgba(9, 30, 66, 0.31);
}
.header {
    margin: 0 auto;
    width: 1200px;
    height: 70px;
    align-items: center;
}
.header .logo {
    display: inline-block;
    width: 97px;
    height: 40px;
}
.header .logo .thumb {
    display: block;
    width: 100%;
    height: 100%;
}
.header .header-right {
    align-items: center;
}
.header .nav {
    align-items: center;
}
.header .nav a {
    margin: 0 12px;
    font-size: 16px;
    line-height: 30px;
    color: #000;
}
.header .nav a.cur,
.header .nav a:hover {
    color: #0061ff;
}
.header .nav .gift {
    align-items: center;
}
.header .nav .gift img {
    margin-right: 6px;
    width: 20px;
    height: 20px;
}
.header .login-btn {
    margin-left: 52px;
    display: inline-block;
    width: auto;
    height: 24px;
    box-sizing: border-box;
    padding: 0 12px;
    border-radius: 3px;
    background: #deebff;
    font-size: 14px;
    line-height: 24px;
    color: #0061ff;
    font-weight: 500;
    cursor: pointer;
}
.header .login-group {
    margin-left: 52px;
    width: auto;
    height: 30px;
    align-items: center;
}
.header .login-group .history-link {
    margin-right: 10px;
    display: inline-block;
    width: auto;
    height: 30px;
    padding: 0 10px;
    border-radius: 3px;
    background: rgba(9, 30, 66, 0.04);
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    color: #344563;
}
.header .login-group .user {
    position: relative;
    width: auto;
    height: 40px;
    align-items: center;
}
.header .login-group .avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.header .login-group .user:hover .menus {
    display: block;
}
.header .login-group .menus {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    min-width: 64px;
    height: auto;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 4px 8px -2px rgba(9, 30, 66, 0.25),
        0px 0px 1px 0px rgba(9, 30, 66, 0.15);
}
.header .login-group .menus a {
    display: block;
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #4e5d68;
    font-weight: 400;
    cursor: pointer;
}
.footer-bar {
    width: 100%;
    height: auto;
    padding-top: 24px;
    padding-bottom: 30px;
    border-top: 1px solid #f4f5f7;
}
.footer-bar .footer {
    margin: 0 auto;
    width: 1140px;
}
.footer-bar .footer .left {
    width: auto;
}
.footer .link-group {
    width: 100%;
}
.footer .link-group a {
    display: inline-block;
    margin-right: 24px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
}
.footer .link-group a:hover {
    color: #0061ff;
}
.footer .copyright {
    margin-top: 19px;
    font-size: 12px;
    line-height: 26px;
    color: #c0c4cc;
    font-weight: 400;
}
.footer .copyright a {
    color: #c0c4cc;
}
.footer .copyright a:hover {
    color: #0061ff;
}
.footer .copyright span {
    margin-right: 24px;
}
.footer .partner {
    width: auto;
}
.footer .partner .item {
    margin-left: 20px;
    display: inline-block;
    width: 100px;
    height: 36px;
}
.footer .partner .item:first-child {
    margin-left: 0;
}
.footer .partner .item .thumb {
    display: block;
    width: 100%;
    height: 100%;
}
/*login*/
.login {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.login.hid {
    display: none;
}
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 385px;
    height: auto;
    box-sizing: border-box;
    padding-top: 64px;
    padding-bottom: 40px;
    background: #fff;
    box-shadow: 0px 5px 10px -6px rgba(9, 30, 66, 0.35);
    text-align: center;
}
.login-box.hid {
    display: none;
}
.login-box .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.login-box .tit {
    width: 100%;
    height: 28px;
    justify-content: center;
    line-height: 28px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
}
.login-box .tit .icon {
    margin-right: 4px;
    width: 28px;
    height: 28px;
}
.login-box .subTit {
    margin-top: 10px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #091e42;
    opacity: 0.35;
}
.login-box .qrcode {
    margin: 28px auto 0;
    width: 160px;
    height: 160px;
}
.login-box .qrcode .thumb {
    display: block;
    width: 100%;
    height: 100%;
}
.login-box .tip {
    margin-top: 10px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #344563;
    font-weight: 400;
}
.login-box .loginInMobile {
    margin: 40px auto 0;
    width: 158px;
    height: 32px;
    padding: 0 12px;
    border-radius: 3px;
    background: rgba(9, 30, 66, 0.04);
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 32px;
    color: #0061ff;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.login-box .loginInMobile:hover {
    background: rgba(9, 30, 66, 0.1);
}
.login-box .loginInMobile .icon {
    margin-right: 2px;
    width: 20px;
    height: 20px;
}
.login-box .loginInWX {
    margin: 52px auto 0;
    width: 112px;
    height: 32px;
    padding: 0 12px;
    border-radius: 3px;
    background: rgba(9, 30, 66, 0.04);
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 32px;
    color: #1aad19;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.login-box .loginInWX:hover {
    background: rgba(9, 30, 66, 0.1);
}
.login-box .loginInWX .icon {
    margin-right: 2px;
    width: 20px;
    height: 20px;
}
.login-box .comment {
    margin-top: 28px;
    color: #091e42;
}
.login-box .comment span {
    opacity: 0.35;
}
.login-box .comment a {
    margin: 0 2px;
    color: #091e42;
    opacity: 0.9;
}
.login-box .form-group {
    margin: 0 auto 10px;
    width: 260px;
    height: 40px;
}
.login-box .form-group.fg {
    margin-top: 28px;
}
.login-box .form-group .form-input {
    flex: 1;
}
.login-box .form-group .inner-input {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    padding: 0 16px;
    border-radius: 3px;
    border: 2px solid #dfe1e5;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    font-size: 14px;
    color: #344563;
    font-weight: 400;
}
.login-box .form-group .inner-input:focus {
    border-color: #4c9aff;
}
.login-box .form-group .form-code {
    margin-left: 10px;
    width: 96px;
    height: 40px;
    border-radius: 3px;
    border: none;
    background: rgba(9, 30, 66, 0.04);
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #344563;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.login-box .form-group .form-code:focus {
    outline: none;
}
.login-box .form-group .form-code:hover {
    background: rgba(9, 30, 66, 0.1);
}
.login-box .form-btn {
    margin: 0 auto;
    width: 260px;
    height: 40px;
    padding-top: 14px;
    padding-bottom: 24px;
}
.login-box .form-btn .inner-btn {
    width: 100%;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 3px;
    background: #0061ff;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.login-box .form-btn .inner-btn:hover {
    opacity: 0.7;
}
/*index*/
.bgImg {
    position: relative;
    width: 100%;
    height: 385px;
    background-image: url(../images/fg/index.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
@media screen and (min-width: 1920px) {
    .bgImg {
        height: 514px;
        background-image: url(../images/fg/index_2560.jpg);
    }
}
.bgImg .txt {
    position: absolute;
    top: 43%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 40px;
    line-height: 56px;
    color: #fff;
    font-weight: 500;
}
/*main-content*/
.main-content {
    margin: 0 auto;
    position: relative;
    top: -72px;
    width: 1140px;
}
/*upload-container*/
.upload-container {
    width: 1140px;
    height: 300px;
    box-sizing: border-box;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 12px 24px -6px rgba(9, 30, 66, 0.25),
        0px 0px 1px 0px rgba(9, 30, 66, 0.31);
}
/*needLogin*/
.needLogin {
    width: 100%;
    height: 260px;
    box-sizing: border-box;
    border: 2px dashed #e3e4e6;
    text-align: center;
    overflow: hidden;
}
.needLogin .icon {
    margin: 47px auto 10px;
    display: block;
    width: 67px;
    height: auto;
}
.needLogin .txt {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #000;
    font-weight: 400;
}
.needLogin .up-btn {
    margin: 0 auto;
    width: 86px;
    height: 32px;
    background: rgba(9, 30, 66, 0.04);
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #344563;
    font-weight: 500;
    cursor: pointer;
}
.needLogin .tip {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    line-height: 16px;
    color: #b3bac5;
    font-weight: 400;
    text-align: center;
}
/*afterLogin*/
/*user-block*/
.user-block {
    margin-right: 20px;
    width: 230px;
    height: 260px;
    box-sizing: border-box;
    padding: 4px;
    text-align: center;
}
.user-block .vip {
    width: 100%;
    height: 24px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}
.user-block .vip .sigal {
    margin-right: 5px;
    width: 24px;
    height: 24px;
}
.user-block .vip .name {
    margin-right: 5px;
    color: #000;
}
.user-block .vip .date {
    color: #b3bac5;
}
.user-block .vip-progress {
    margin-top: 24px;
    position: relative;
    width: 100%;
    height: 156px;
    justify-content: center;
    align-items: center;
}
.user-block .vip-progress .status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.user-block .vip-progress .status .long {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
.user-block .vip-progress .status .txt {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
.user-block .up {
    margin-top: 15px;
    display: inline-block;
    font-size: 12px;
    line-height: 17px;
    color: #344563;
    text-align: center;
    text-decoration: underline;
}
.user-block .vip-hastime .status {
    color: #0061ff;
}
.user-block .vip-notime .status {
    color: #faae14;
}
/*upload-group*/
.upload-container .upload-group {
    flex: 1;
    height: 260px;
    box-sizing: border-box;
    border: 2px dashed #e3e4e6;
    overflow: hidden;
}
/*control-block*/
.control-block {
    width: 100%;
    height: 81px;
}
.control-block .control {
    height: 80px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
    align-items: center;
}
.control-block .lab {
    box-sizing: border-box;
    padding: 16px 0;
    font-size: 14px;
    line-height: 24px;
    color: #2d2d2d;
}
.control-block .type-btn {
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
    padding-left: 10px;
}
.control-block .type-btn .item {
    margin-right: 20px;
    width: auto;
    height: 60px;
    align-items: center;
    cursor: pointer;
}
.control-block .type-btn .item:last-child {
    margin-right: 0;
}
.control-block .type-btn .item .btn {
    position: relative;
    z-index: 9;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e3e6;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.control-block .type-btn .item .btn:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.control-block .type-btn .item .tip {
    margin-left: 9px;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #b3bac5;
    font-weight: 400;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.control-block .type-btn .item .tip .sigal {
    position: absolute;
    top: -12px;
    right: -45px;
    display: inline-block;
    width: 50px;
    height: 16px;
    border-radius: 8px;
    background: #fcd18d;
    color: #a26e1d;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}
/*checked*/
.control-block .type-btn .item.checked .btn {
    background: #cddaf7;
}
.control-block .type-btn .item.checked .btn:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0061ff;
}
.control-block .type-btn .item.checked .tip {
    color: #136aff;
}
/*disabled*/
.control-block .type-btn .item.disabled,
.control-block .type-btn .item.disabled .btn {
    cursor: not-allowed;
}
/*btn*/
.control-block .btn-group {
    width: 192px;
    box-sizing: border-box;
    padding-left: 10px;
    align-items: center;
}
.control-block .btn-group .btn {
    position: relative;
    width: 86px;
    height: 32px;
    border-radius: 3px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    cursor: pointer;
}
.control-block .btn-group .btn:hover {
    opacity: 0.8;
}
.control-block .btn-group .btn.addMore {
    background: rgba(9, 30, 66, 0.04);
    color: #344563;
}
.control-block .btn-group .btn.addMore > div {
    width: 100% !important;
    height: 100% !important;
}
.control-block .btn-group .btn.addMore.disabled {
    cursor: not-allowed;
    color: #b3bac5;
}
.control-block .btn-group .btn.transform {
    background: #0061ff;
    color: #fff;
}
.control-block .btn-group .btn.transform.disabled {
    cursor: not-allowed;
    opacity: 0.8;
}
/*serverType*/
.serverControl {
    height: 72px;
}
.serverControl .control {
    height: 72px;
    border-bottom: none;
}
.serverControl .lab {
    padding: 0;
    line-height: 72px;
}
/*audioType*/
.audioControl {
    height: 81px;
}
.audioControl .type-btn .item {
    margin-right: 10px;
    width: 150px;
}
.audioControl .type-btn .item.wf {
    width: 150px;
}
.upload-wrapper {
    width: 100%;
    height: 234px;
    box-sizing: border-box;
    padding: 0 24px;
}
/*upload-card*/
.upload-card {
    width: 100%;
    height: 256px;
    box-sizing: border-box;
    padding-top: 32px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}
.upload-card .icon {
    margin: 0 auto 10px;
    display: block;
    width: 60px;
    height: auto;
}
.upload-card .txt {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #000;
    font-weight: 400;
}
.upload-card .up-btn {
    margin: 0 auto;
    display: block;
    width: 86px;
    height: 32px;
    background: rgba(9, 30, 66, 0.04);
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #344563;
    font-weight: 500;
}
.upload-card .tip {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 16px;
    color: #b3bac5;
    font-weight: 400;
    text-align: center;
}
/*upload*/
.up-btn .webuploader-pick,
.addMore .webuploader-pick {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: none;
    cursor: pointer;
    padding: 0;
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    color: #344563;
}
.upload-group .upload-audio {
    width: 100%;
    height: 175px;
    overflow: auto;
}
.upload-group .upload-audio .item {
    width: 100%;
    height: 41px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 10px;
}
.upload-group .upload-audio .item:last-child {
    border-bottom: none;
}
.upload-group .upload-audio .item .file_name {
    width: 216px;
    height: 40px;
    overflow: hidden;
    font-size: 14px;
    color: #000000;
    line-height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.upload-group .upload-audio .item .file_size {
    margin: 0 8px 0 16px;
    width: 80px;
    height: 40px;
    overflow: hidden;
    font-size: 14px;
    color: #000000;
    line-height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.upload-group .upload-audio .item .file_pro {
    position: relative;
    margin-top: 16px;
    width: 120px;
    height: 8px;
    border-radius: 4px;
    background: #f4f5f7;
}
.upload-group .upload-audio .item .file_pro .pro_block {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 8px;
    border-radius: 4px;
    background: #0061ff;
}
.upload-group .upload-audio .item .file_status {
    margin-left: 24px;
    width: 200px;
    font-size: 14px;
    color: #000000;
    line-height: 40px;
}
.upload-group .upload-audio .item .file_btns {
    width: 114px;
    align-items: center;
    justify-content: flex-end;
}
.upload-group .upload-audio .item .btn {
    margin-left: 10px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.upload-group .upload-audio .item .btn:hover {
    opacity: 0.8;
}
.upload-group .upload-audio .item .btn .icon {
    width: 24px;
    height: 24px;
}
.upload-group .upload-audio .ok-tip {
    padding: 24px 0;
    font-size: 12px;
    line-height: 16px;
    color: #b3bac5;
    font-weight: 400;
    text-align: center;
}
.upload-group .upload-audio .ok-tip .cycle {
    margin-right: 5px;
    width: 12px;
    height: 12px;
    transition: 0.5s;
    transform-origin: 6px 6px;
    animation: rotate 1s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.upload-group .upload-audio .ok-tip .toRecord {
    display: inline-block;
    margin: 0 4px;
    color: #b3bac5;
    text-decoration: underline;
}
/*upload-boxAfter*/
.upload-boxAfter {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #3b4c68;
}
/**/
.banner {
    margin: 0 auto;
    width: 1140px;
    height: auto;
}
.banner .thumb {
    display: block;
    width: 100%;
    height: auto;
}
.menu-group {
    margin: 24px auto 64px;
    width: 1140px;
    height: auto;
    flex-wrap: wrap;
}
.menu-group .item {
    margin-top: 40px;
    width: 25%;
    box-sizing: border-box;
    padding: 0 10px;
}
.menu-group .item .icon {
    margin: 0 auto;
    display: block;
    width: 36px;
    height: 36px;
}
.menu-group .item .name {
    margin-top: 10px;
    width: 100%;
    height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
    text-align: center;
    font-weight: bolder;
}
.menu-group .item .txt {
    margin-top: 10px;
    width: 100%;
    height: 60px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
    text-align: center;
}
/*price*/

.server-card .server .item.disabled {
    border-color: #b3bac5;
    cursor: not-allowed;
}
.server-card .server .item.disabled .long,
.server-card .server .item.disabled .price {
    color: #b3bac5;
}
.price-card {
    background: #fbfbfc;
}
.price-card .title-bar {
    margin: 0 auto;
    width: 1140px;
    padding-top: 64px;
    font-size: 50px;
    line-height: 65px;
    text-align: center;
    color: #344563;
}
/*等级套餐*/
.price-select {
    margin: 40px auto 32px;
    width: 1140px;
}
.price-select .item {
    width: 360px;
    height: auto;
    background: #fff;
    box-shadow: 0px 8px 16px -4px rgba(9, 30, 66, 0.25);
}
.price-select .item .toper {
    width: 360px;
    height: 146px;
    box-sizing: border-box;
    padding-top: 32px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 16px;
    color: #344563;
    line-height: 24px;
}
.price-select .item.default .toper {
    background-image: url(../images/fg/v1.png);
}
.price-select .item.high .toper {
    background-image: url(../images/fg/v2.png);
}
.price-select .item.super .toper {
    background-image: url(../images/fg/v3.png);
}

.price-select .item .toper .txt1 {
    margin-bottom: 14px;
}
.price-select .item .toper .txt2 .num {
    margin: 0 10px;
    font-size: 40px;
    font-weight: bold;
}
.price-select .item .btmer {
    box-sizing: border-box;
    padding: 24px 14px 32px;
}
.price-select .info {
    width: 100%;
    height: 450px; 
    min-height: 400px;
    box-sizing: border-box;
    padding-bottom: 10px;
}
.price-select .txt-group {
    margin-bottom: 16px;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #344563;
    font-weight: 500;
}
.price-select .txt-group .name {
    color: #838c9d;
}
.price-select .txt-group .val {
    flex: 1;
    box-sizing: border-box;
    padding-left: 20px;
    overflow: hidden;
    text-align: right;
}
.price-select .btn-group {
    width: 100%;
    height: auto;
}
.price-select .btn-group .btn {
    margin: 0 auto;
    display: block;
    width: 160px;
    height: 42px;
    outline: none;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    background: none;
    font-size: 16px;
    line-height: 42px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}
.price-select .btn-group .btn:focus {
    outline: none;
}
.price-select .btn-group .btn:hover {
    opacity: 0.8;
}
.price-select .btn-group .hasGet {
    border-color: #dfe1e6;
    background: none;
    color: #dfe1e6;
    cursor: not-allowed;
}
.price-select .btn-group .register {
    border-color: #0061ff;
    color: #0061ff;
}
.price-select .btn-group .vip-h {
    border-color: #fcd18d;
    background: #fcd18d;
    color: #96600c;
}
.price-select .btn-group .vip-p {
    border-color: #cddaf7;
    background: #cddaf7;
    color: #214597;
}
.price-select .btn-group .btn-notOpen {
    border-color: #cddaf7;
    background: #cddaf7;
    color: #214597;
    /*cursor: not-allowed;*/
}
/*购买支付弹窗*/
.vipServer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.vipServer.hid {
    display: none;
}
.server-card {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    width: auto;
    min-width: 680px;
    height: auto;
    box-sizing: border-box;
    padding: 50px 80px 40px;
    background: #fff;
    box-shadow: 0px 5px 10px -6px rgba(9, 30, 66, 0.35);
}
.server-card .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.server-card .server-title {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #344563;
    font-weight: 500;
}
.server-card .server {
    margin-top: 40px;
    width: auto;
}
.server-card .server .txt {
    width: 105px;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
    font-weight: 500;
}
.server-card .server .item {
    position: relative;
    margin: 0 5px;
    width: 130px;
    height: 130px;
    box-sizing: border-box;
    padding: 30px 0 0 24px;
    border: 1px solid #b3bac5;
    cursor: pointer;
}
.server-card .server .item.selected {
    border-color: #0061ff;
}
.server-card .server .fee {
    position: absolute;
    top: -8px;
    right: -25px;
    width: 50px;
    height: 16px;
    border-radius: 8px;
    background: #ff5630;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #fff;
}
.server-card .server .item .long {
    font-size: 16px;
    line-height: 20px;
    color: #344563;
    font-weight: 500;
}
.server-card .server .item .long .num {
    font-size: 42px;
    line-height: 42px;
}
.server-card .server .item .price {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
}
.server-card .pay-type {
    margin-top: 30px;
}
.server-card .pay-type .txt {
    width: 105px;
    font-size: 14px;
    line-height: 24px;
    color: #344563;
    font-weight: 500;
}
.server-card .pay-type .item {
    margin-right: 24px;
    width: auto;
    height: 24px;
    align-items: center;
    cursor: pointer;
}
.server-card .pay-type .item .rad {
    margin-right: 5px;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border: 2px solid #dfe1e5;
    border-radius: 50%;
}
.server-card .pay-type .item.selected .rad {
    border-width: 4px;
    border-color: #0061ff;
}
.server-card .pay-type .item .icon {
    margin-right: 5px;
    width: 24px;
    height: 24px;
}
.server-card .pay-type .item span {
    font-size: 14px;
    line-height: 24px;
    color: #344563;
}
.server-card .count {
    margin-top: 47px;
    justify-content: flex-end;
}
.server-card .count .total {
    margin-right: 14px;
    font-size: 14px;
    line-height: 32px;
    color: #344563;
    font-weight: 500;
}
.server-card .count .total .num {
    font-size: 28px;
    line-height: 32px;
}
.server-card .count .toPay {
    width: 86px;
    height: 32px;
    border: none;
    border-radius: 3px;
    background: #0061ff;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.server-card .count .toPay:hover {
    opacity: 0.8;
}
.mailTip {
    margin: 0 auto 32px;
    width: 1140px;
    font-size: 16px;
    line-height: 28px;
    color: #b3bac5;
    text-align: center;
}
/*常见问题*/
.questions-box {
    width: 100%;
    height: auto;
    background: #fff;
}
.questions-box .questions {
    margin: 0 auto;
    width: 1140px;
    height: auto;
    box-sizing: border-box;
    padding: 57px 40px 60px;
}
.questions .title {
    margin-bottom: 48px;
    font-size: 50px;
    line-height: 65px;
    text-align: center;
    color: #344563;
}
.questions .questions-list {
    width: 100%;
    flex-wrap: wrap;
}
.questions .questions-list .questions-item {
    margin-bottom: 40px;
    width: 480px;
    height: auto;
}
.questions-list .questions-item .name {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #344563;
    font-weight: 500;
    font-family: PingFangSC-Medium, PingFang SC;
}
.questions-list .questions-item .txt {
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #344563;
    font-weight: 400;
    font-family: PingFangSC-Regular, PingFang SC;
}
/*支付二维码*/
.server-card .qrcode {
    margin: 40px auto 0;
    width: 300px;
    height: 300px;
}
.server-card .qrcode .thumb {
    display: block;
    width: 100%;
    height: 100%;
}
.server-card .qrcode .thumb img {
    display: block;
    width: 100%;
    height: 100%;
}

.server-card .btn-group {
    margin-top: 47px;
}
.server-card .btn-group .hasPay {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 32px;
    border: none;
    padding: 0;
    border-radius: 3px;
    background: #0061ff;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.server-card .btn-group .hasPay:hover {
    opacity: 0.8;
}

/*兑换码*/
.convert {
    margin: 0 auto 40px;
    width: 1140px;
    height: auto;
    box-sizing: border-box;
    padding-top: 40px;
}
.convert .title {
    text-align: center;
    line-height: 65px;
    font-size: 50px;
    color: #344563;
}
.convert-wrapper {
    margin: 40px auto 0;
    width: 584px;
    height: 144px;
    background: url(../images/fg/convert-bg.png) no-repeat center;
    background-size: 100% 100%;
}
.convert-wrapper .convert-input {
    width: 438px;
    justify-content: center;
    align-items: center;
}
.convert-wrapper .convert-input .convert-code {
    width: 238px;
    height: 42px;
    box-sizing: border-box;
    outline: none;
    border: 2px solid #dfe1e5;
    border-radius: 3px;
    padding: 0 18px;
    font-size: 14px;
    color: #344563;
}
.convert-wrapper .convert-input .convert-code:focus {
    outline: none;
}
.convert-wrapper .convert-input .convert-code::-webkit-input-placeholder {
    font-size: 14px;
    color: #7a869a;
}
.convert-wrapper .convert-input .convert-code::-ms-input-placeholder {
    font-size: 14px;
    color: #7a869a;
}
.convert-wrapper .convert-input .convert-code::-moz-placeholder {
    font-size: 14px;
    color: #7a869a;
}
.convert-wrapper .convert-btn {
    width: 146px;
    justify-content: center;
    align-items: center;
}
.convert-wrapper .convert-btn .btn-convert {
    width: 88px;
    height: 42px;
    outline: none;
    padding: none;
    border: none;
    border-radius: 3px;
    background: #fcd18d;
    color: #96600c;
    font-size: 16px;
    cursor: pointer;
}
.convert-wrapper .convert-btn .btn-convert:hover {
    opacity: 0.8;
}
.convert-wrapper .convert-btn .btn-convert:focus {
    outline: none;
}
/*invite*/
.invite {
    width: 100%;
    background: #fbfbfc;
    font-family: PingFangSC-Medium, PingFang SC;
}
.invite .invite-wrapper {
    margin: 0 auto;
    width: 1140px;
    height: auto;
    padding: 52px 0;
}
.invite .title {
    text-align: center;
    line-height: 70px;
    font-size: 50px;
    color: #344563;
}
.invite .sub-title {
    margin-top: 11px;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    color: #344563;
}
.invite .invite-group {
    margin-top: 34px;
    width: 100%;
    justify-content: space-around;
}
.invite .invite-group .invite-item {
    position: relative;
    width: 542px;
    height: 274px;
    box-sizing: border-box;
    padding: 86px 32px 0;
    background: url(../images/fg/invite_bg.png) no-repeat center center;
    background-size: cover;
    box-shadow: 0px 6px 15px 0px #ecedf0;
}
.invite .invite-item .sigal {
    position: absolute;
    top: 30px;
    left: 0;
    width: 82px;
    height: 36px;
    border-radius: 0px 18px 18px 0px;
    background: #fcd18e;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    color: #996312;
}
.invite .invite-item .text {
    font-size: 22px;
    line-height: 44px;
    color: #344563;
    font-weight: 400;
}
.invite .invite-link {
    margin-top: 48px;
}
.invite .invite-link .link {
    margin: 0 auto;
    display: block;
    width: 208px;
    height: 66px;
    border: none;
    background: #005eff;
    text-align: center;
    line-height: 66px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}
.invite .invite-link .link:hover {
    opacity: 0.8;
}
/*历史记录*/
.history .title-bar {
    margin: 64px auto;
    width: 1140px;
    height: auto;
    font-size: 50px;
    line-height: 65px;
    text-align: center;
    color: #344563;
    font-weight: 500;
}
.history .list {
    margin: 0 auto 60px;
    width: 1140px;
    height: auto;
    box-shadow: 0px -1px 0px 0px rgba(229, 229, 229, 1);
}
.history .list .item {
    width: 100%;
    height: auto;
    min-height: 48px;
    box-sizing: border-box;
    padding: 0 20px;
    box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 1);
    align-items: center;
    text-align: center;
}
.history .list .item .text {
    width: 100%;
    text-align: center;
    color: #c0c4cc;
}
.history .list .item .inner-item {
    width: 20%;
}

/*.history .list .item .limit .wait {*/
/*	color: #c0c4cc;*/
/*}*/
.fail {
    color: red;
}
.history .list .item .limit .hasDel {
    color: #b3bac5;
}

.history .list .list-header {
    font-size: 16px;
    line-height: 48px;
    font-weight: 400;
    color: #000;
}
.history .list .list-item {
    font-size: 14px;
    font-weight: 400;
    color: #344563;
}
.history .list .list-item .file {
    box-sizing: border-box;
    padding: 6px 0;
    line-height: 36px;
}
.history .list .list-item .file .name {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.history .list .list-item .manage a {
    color: #0061ff;
}
.history .list .list-item.disabled {
    color: #b3bac5;
}
/*用户协议/隐私政策*/
.protocol {
    margin: 0 auto;
    width: 1140px;
    box-sizing: border-box;
    padding: 64px 20px;
}
.protocol .title {
    font-size: 40px;
    line-height: 65px;
    color: #000;
    font-weight: 500;
    text-align: center;
}
.protocol .rich-text {
    margin-top: 10px;
}
.protocol .rich-text p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
}
.protocol .rich-text img {
    display: block;
    margin: 10px auto;
    width: auto;
}
/*404/500*/
.page404 {
    margin: 200px auto;
    width: 1440px;
    height: auto;
    justify-content: center;
}
.page404 .icon-wrapper {
    margin-right: 124px;
    width: 372px;
    height: 372px;
    background: url(../images/fg/error_icon.png) no-repeat center;
    background-size: 100% 100%;
}
.page404 .status {
    box-sizing: border-box;
    padding-top: 10px;
}
.page404 .status .img-wrapper {
    width: 336px;
    height: auto;
}
.page404 .status .img-wrapper .thumb {
    display: block;
    width: 100%;
    height: auto;
}
.page404 .status .status-txt {
    margin-top: 60px;
    font-size: 28px;
    line-height: 56px;
    color: #212121;
    font-weight: bolder;
}
.page404 .status .toHome {
    margin-top: 10px;
    font-size: 24px;
    line-height: 36px;
    color: #abb1bf;
}
/*å¼¹çª—*/
.alert_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.alert {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 320px;
    height: 148px;
    box-sizing: border-box;
    padding: 16px 16px 0;
    background: #fff;
}

.alert .icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}
.alertSuccess .icon {
    background-image: url(../images/fg/icon_success.png);
}
.alertFail .icon {
    background-image: url(../images/fg/icon_warning.png);
}
.alert .alert_content {
    flex: 1;
    box-sizing: border-box;
    padding-left: 16px;
    overflow: hidden;
}
.alert .alert_title {
    width: 100%;
    height: 24px;
}
.alert .alert_title .inner_title {
    flex: 1;
    font-size: 14px;
    line-height: 24px;
    color: #172b4d;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: bolder;
}
.alert .alert_title .alert_close {
    width: 24px;
    height: 24px;
    background: url(../images/fg/icon_close.png) no-repeat center;
    background-size: 100% 100%;
    cursor: pointer;
}
.alert .alert_txt {
    margin-top: 7px;
    display: -webkit-box;
    width: 100%;
    height: 48px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 24px;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #253858;
    word-break: break-all;
    font-weight: 400;
}
.alert .alert_btn {
    margin-top: 8px;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #0061ff;
    cursor: pointer;
}
/*试听案例*/
.example-group {
    margin: 24px auto 30px;
    width: 1140px;
    height: auto;
}
.example-group .title {
    text-align: center;
    line-height: 65px;
    font-size: 50px;
    color: #344563;
}
.example-group .example-audio {
    margin: 20px auto 0;
    width: 400px;
    height: auto;
}
/*叠加包*/
.overtime {
    margin: 0 auto 36px;
    width: 1140px;
    height: auto;
    box-sizing: border-box;
    padding-top: 40px;
}
.overtime .title {
    text-align: center;
    line-height: 65px;
    font-size: 50px;
    color: #344563;
}
.overtime .sub-title {
    margin-top: 10px;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    color: #344563;
}
.overtime .pack-wrapper {
    margin-top: 38px;
    width: 100%;
    height: auto;
    justify-content: space-around;
}
.overtime .pack-wrapper .item {
    width: 360px;
    height: 144px;
    background: url(../images/fg/card.png) no-repeat center;
    background-size: 100%;
}
.overtime .item .longPrice {
    width: 230px;
    box-sizing: border-box;
    padding-top: 52px;
    justify-content: center;
}
.overtime .item .longPrice .price {
    font-size: 40px;
    line-height: 40px;
    color: #344563;
    font-weight: bolder;
}
.overtime .item .longPrice .long {
    margin-left: 10px;
    font-size: 16px;
    line-height: 50px;
    color: #344563;
    font-weight: 400;
}
.overtime .item .btn-wrapper {
    width: 130px;
    justify-content: center;
    align-items: center;
}
.overtime .item .btn-wrapper .btn {
    width: 88px;
    height: 42px;
    border-radius: 3px;
    background: #cddaf7;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    color: #214597;
    cursor: pointer;
}
.overtime .item .btn-wrapper .btn:hover {
    opacity: 0.8;
}
/*购买叠加包*/
.packServer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.packServer.hid {
    display: none;
}
.pack-card {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    width: auto;
    min-width: 680px;
    height: auto;
    box-sizing: border-box;
    padding: 50px 80px 40px;
    background: #fff;
    box-shadow: 0px 5px 10px -6px rgba(9, 30, 66, 0.35);
}
.pack-card .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.pack-card .card-title {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #344563;
    font-weight: 500;
}
.pack-card .pack {
    margin-top: 40px;
    width: auto;
}
.pack-card .pack .txt {
    width: 105px;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
    font-weight: 500;
}
.pack-card .pack .item {
    position: relative;
    margin: 0 5px;
    width: 130px;
    height: 130px;
    box-sizing: border-box;
    padding: 30px 0 0 12px;
    border: 1px solid #b3bac5;
    cursor: pointer;
}
.pack-card .pack .item.selected {
    border-color: #0061ff;
}
.pack-card .pack .item .long {
    font-size: 16px;
    line-height: 20px;
    color: #344563;
    font-weight: 500;
}
.pack-card .pack .item .long .num {
    font-size: 42px;
    line-height: 42px;
}
.pack-card .pack .item .price {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
}
.pack-card .pay-type {
    margin-top: 30px;
}
.pack-card .pay-type .txt {
    width: 105px;
    font-size: 14px;
    line-height: 24px;
    color: #344563;
    font-weight: 500;
}
.pack-card .pay-type .item {
    margin-right: 24px;
    width: auto;
    height: 24px;
    align-items: center;
    cursor: pointer;
}
.pack-card .pay-type .item .rad {
    margin-right: 5px;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border: 2px solid #dfe1e5;
    border-radius: 50%;
}
.pack-card .pay-type .item.selected .rad {
    border-width: 4px;
    border-color: #0061ff;
}
.pack-card .pay-type .item .icon {
    margin-right: 5px;
    width: 24px;
    height: 24px;
}
.pack-card .pay-type .item span {
    font-size: 14px;
    line-height: 24px;
    color: #344563;
}
.pack-card .count {
    margin-top: 47px;
    justify-content: flex-end;
}
.pack-card .count .total {
    margin-right: 14px;
    font-size: 14px;
    line-height: 32px;
    color: #344563;
    font-weight: 500;
}
.pack-card .count .total .num {
    font-size: 28px;
    line-height: 32px;
}
.pack-card .count .toPay {
    width: 86px;
    height: 32px;
    border: none;
    border-radius: 3px;
    background: #0061ff;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.pack-card .count .toPay:hover {
    opacity: 0.8;
}
/*login*/
.form-group.mobile .inner-input {
    box-sizing: border-box;
    padding-left: 102px;
}
.form-group .form-input {
    position: relative;
}
.form-group .country {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 100px;
    box-sizing: border-box;
    padding-left: 16px;
    align-items: center;
    cursor: pointer;
}
.form-group .country:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2px;
    height: 24px;
    background: #dfe1e5;
}
.form-group .country .country_select {
    width: 42px;
    line-height: 36px;
    font-size: 14px;
    color: #253858;
    text-align: left;
}
.form-group .country .country_select input {
    display: block;
    width: 100%;
    height: 36px;
    padding: 0;
    border: none;
    outline: none;
}
.form-group .country .arrow-wrapper {
    width: 24px;
    height: 24px;
}
.form-group .country .arrow-wrapper .icon {
    display: block;
    width: 24px;
    height: 24px;
}
.form-group .country .arrow-wrapper .icon.down {
    display: block;
}
.form-group .country .arrow-wrapper .icon.up {
    display: none;
}
.form-group .country .arrow-wrapper.open .icon.down {
    display: none;
}
.form-group .country .arrow-wrapper.open .icon.up {
    display: block;
}
.country-list {
    display: none;
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 10;
    width: 260px;
    max-height: 224px;
    box-sizing: border-box;
    padding: 8px 0 6px;
    border-radius: 3px;
    box-shadow: 0px 4px 8px -2px rgba(9, 30, 66, 0.25),
        0px 0px 1px 0px rgba(9, 30, 66, 0.31);
    background: #fff;
    overflow-y: auto;
}
.country-list .item {
    width: 100%;
    height: 32px;
    box-sizing: border-box;
    padding: 0 18px;
    background: #fff;
    align-items: center;
    cursor: pointer;
}
.country-list .item:hover {
    background: #f4f5f7;
}
.country-list .item .flag {
    display: inline-block;
    width: 24px;
    height: 16px;
    background-image: url(../images/fg/flags.png);
    background-repeat: no-repeat;
    background-size: 24px 3876px;
}

.country-list .item .zh,
.country-list .item .code {
    font-size: 14px;
    line-height: 32px;
    color: #344563;
    text-align: left;
}
.country-list .item .zh {
    margin-left: 10px;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.country-list .item .code {
    width: 50px;
    text-align: right;
}
.country-list .line-divider {
    margin: 8px 0;
    width: 100%;
    height: 1px;
    background: #e4ebf0;
}
.flag.ad:before,
.flag.andorra:before {
    background-position: 0 0;
}

.flag.ae:before,
.flag.uae:before,
.flag.united.arab.emirates:before {
    background-position: 0 -26px;
}

.flag.af:before,
.flag.afghanistan:before {
    background-position: 0 -52px;
}

.flag.ag:before,
.flag.antigua:before {
    background-position: 0 -78px;
}

.flag.ai:before,
.flag.anguilla:before {
    background-position: 0 -104px;
}

.flag.al:before,
.flag.albania:before {
    background-position: 0 -130px;
}

.flag.am:before,
.flag.armenia:before {
    background-position: 0 -156px;
}

.flag.an:before,
.flag.netherlands.antilles:before {
    background-position: 0 -182px;
}

.flag.angola:before,
.flag.ao:before {
    background-position: 0 -208px;
}

.flag.ar:before,
.flag.argentina:before {
    background-position: 0 -234px;
}

.flag.american.samoa:before,
.flag.as:before {
    background-position: 0 -260px;
}

.flag.at:before,
.flag.austria:before {
    background-position: 0 -286px;
}

.flag.au:before,
.flag.australia:before {
    background-position: 0 -312px;
}

.flag.aruba:before,
.flag.aw:before {
    background-position: 0 -338px;
}

.flag.aland.islands:before,
.flag.ax:before {
    background-position: 0 -364px;
}

.flag.az:before,
.flag.azerbaijan:before {
    background-position: 0 -390px;
}

.flag.ba:before,
.flag.bosnia:before {
    background-position: 0 -416px;
}

.flag.barbados:before,
.flag.bb:before {
    background-position: 0 -442px;
}

.flag.bangladesh:before,
.flag.bd:before {
    background-position: 0 -468px;
}

.flag.be:before,
.flag.belgium:before {
    background-position: 0 -494px;
}

.flag.bf:before,
.flag.burkina.faso:before {
    background-position: 0 -520px;
}

.flag.bg:before,
.flag.bulgaria:before {
    background-position: 0 -546px;
}

.flag.bahrain:before,
.flag.bh:before {
    background-position: 0 -572px;
}

.flag.bi:before,
.flag.burundi:before {
    background-position: 0 -598px;
}

.flag.benin:before,
.flag.bj:before {
    background-position: 0 -624px;
}

.flag.bermuda:before,
.flag.bm:before {
    background-position: 0 -650px;
}

.flag.bn:before,
.flag.brunei:before {
    background-position: 0 -676px;
}

.flag.bo:before,
.flag.bolivia:before {
    background-position: 0 -702px;
}

.flag.br:before,
.flag.brazil:before {
    background-position: 0 -728px;
}

.flag.bahamas:before,
.flag.bs:before {
    background-position: 0 -754px;
}

.flag.bhutan:before,
.flag.bt:before {
    background-position: 0 -780px;
}

.flag.bouvet.island:before,
.flag.bv:before {
    background-position: 0 -806px;
}

.flag.botswana:before,
.flag.bw:before {
    background-position: 0 -832px;
}

.flag.belarus:before,
.flag.by:before {
    background-position: 0 -858px;
}

.flag.belize:before,
.flag.bz:before {
    background-position: 0 -884px;
}

.flag.ca:before,
.flag.canada:before {
    background-position: 0 -910px;
}

.flag.cc:before,
.flag.cocos.islands:before {
    background-position: 0 -962px;
}

.flag.cd:before,
.flag.congo:before {
    background-position: 0 -988px;
}

.flag.central.african.republic:before,
.flag.cf:before {
    background-position: 0 -1014px;
}

.flag.cg:before,
.flag.congo.brazzaville:before {
    background-position: 0 -1040px;
}

.flag.ch:before,
.flag.switzerland:before {
    background-position: 0 -1066px;
}

.flag.ci:before,
.flag.cote.divoire:before {
    background-position: 0 -1092px;
}

.flag.ck:before,
.flag.cook.islands:before {
    background-position: 0 -1118px;
}

.flag.chile:before,
.flag.cl:before {
    background-position: 0 -1144px;
}

.flag.cameroon:before,
.flag.cm:before {
    background-position: 0 -1170px;
}

.flag.china:before,
.flag.cn:before {
    background-position: 0 -1196px;
}

.flag.co:before,
.flag.colombia:before {
    background-position: 0 -1222px;
}

.flag.costa.rica:before,
.flag.cr:before {
    background-position: 0 -1248px;
}

.flag.cs:before,
.flag.serbia:before {
    background-position: 0 -1274px;
}

.flag.cu:before,
.flag.cuba:before {
    background-position: 0 -1300px;
}

.flag.cape.verde:before,
.flag.cv:before {
    background-position: 0 -1326px;
}

.flag.christmas.island:before,
.flag.cx:before {
    background-position: 0 -1352px;
}

.flag.cy:before,
.flag.cyprus:before {
    background-position: 0 -1378px;
}

.flag.cz:before,
.flag.czech.republic:before {
    background-position: 0 -1404px;
}

.flag.de:before,
.flag.germany:before {
    background-position: 0 -1430px;
}

.flag.dj:before,
.flag.djibouti:before {
    background-position: 0 -1456px;
}

.flag.denmark:before,
.flag.dk:before {
    background-position: 0 -1482px;
}

.flag.dm:before,
.flag.dominica:before {
    background-position: 0 -1508px;
}

.flag.do:before,
.flag.dominican.republic:before {
    background-position: 0 -1534px;
}

.flag.algeria:before,
.flag.dz:before {
    background-position: 0 -1560px;
}

.flag.ec:before,
.flag.ecuador:before {
    background-position: 0 -1586px;
}

.flag.ee:before,
.flag.estonia:before {
    background-position: 0 -1612px;
}

.flag.eg:before,
.flag.egypt:before {
    background-position: 0 -1638px;
}

.flag.eh:before,
.flag.western.sahara:before {
    background-position: 0 -1664px;
}

.flag.er:before,
.flag.eritrea:before {
    background-position: 0 -1716px;
}

.flag.es:before,
.flag.spain:before {
    background-position: 0 -1742px;
}

.flag.et:before,
.flag.ethiopia:before {
    background-position: 0 -1768px;
}

.flag.eu:before,
.flag.european.union:before {
    background-position: 0 -1794px;
}

.flag.fi:before,
.flag.finland:before {
    background-position: 0 -1846px;
}

.flag.fiji:before,
.flag.fj:before {
    background-position: 0 -1872px;
}

.flag.falkland.islands:before,
.flag.fk:before {
    background-position: 0 -1898px;
}

.flag.fm:before,
.flag.micronesia:before {
    background-position: 0 -1924px;
}

.flag.faroe.islands:before,
.flag.fo:before {
    background-position: 0 -1950px;
}

.flag.fr:before,
.flag.france:before {
    background-position: 0 -1976px;
}

.flag.ga:before,
.flag.gabon:before {
    background-position: -36px 0;
}

.flag.gb:before,
.flag.united.kingdom:before {
    background-position: -36px -26px;
}

.flag.gd:before,
.flag.grenada:before {
    background-position: -36px -52px;
}

.flag.ge:before,
.flag.georgia:before {
    background-position: -36px -78px;
}

.flag.french.guiana:before,
.flag.gf:before {
    background-position: -36px -104px;
}

.flag.gh:before,
.flag.ghana:before {
    background-position: -36px -130px;
}

.flag.gi:before,
.flag.gibraltar:before {
    background-position: -36px -156px;
}

.flag.gl:before,
.flag.greenland:before {
    background-position: -36px -182px;
}

.flag.gambia:before,
.flag.gm:before {
    background-position: -36px -208px;
}

.flag.gn:before,
.flag.guinea:before {
    background-position: -36px -234px;
}

.flag.gp:before,
.flag.guadeloupe:before {
    background-position: -36px -260px;
}

.flag.equatorial.guinea:before,
.flag.gq:before {
    background-position: -36px -286px;
}

.flag.gr:before,
.flag.greece:before {
    background-position: -36px -312px;
}

.flag.gs:before,
.flag.sandwich.islands:before {
    background-position: -36px -338px;
}

.flag.gt:before,
.flag.guatemala:before {
    background-position: -36px -364px;
}

.flag.gu:before,
.flag.guam:before {
    background-position: -36px -390px;
}

.flag.guinea-bissau:before,
.flag.gw:before {
    background-position: -36px -416px;
}

.flag.guyana:before,
.flag.gy:before {
    background-position: -36px -442px;
}

.flag.hk:before,
.flag.hong.kong:before,
.flag.hong.kong\(china\):before {
    background-position: -36px -468px;
}

.flag.heard.island:before,
.flag.hm:before {
    background-position: -36px -494px;
}

.flag.hn:before,
.flag.honduras:before {
    background-position: -36px -520px;
}

.flag.croatia:before,
.flag.hr:before {
    background-position: -36px -546px;
}

.flag.haiti:before,
.flag.ht:before {
    background-position: -36px -572px;
}

.flag.hu:before,
.flag.hungary:before {
    background-position: -36px -598px;
}

.flag.id:before,
.flag.indonesia:before {
    background-position: -36px -624px;
}

.flag.ie:before,
.flag.ireland:before {
    background-position: -36px -650px;
}

.flag.il:before,
.flag.israel:before {
    background-position: -36px -676px;
}

.flag.in:before,
.flag.india:before {
    background-position: -36px -702px;
}

.flag.indian.ocean.territory:before,
.flag.io:before {
    background-position: -36px -728px;
}

.flag.iq:before,
.flag.iraq:before {
    background-position: -36px -754px;
}

.flag.ir:before,
.flag.iran:before {
    background-position: -36px -780px;
}

.flag.iceland:before,
.flag.is:before {
    background-position: -36px -806px;
}

.flag.it:before,
.flag.italy:before {
    background-position: -36px -832px;
}

.flag.jamaica:before,
.flag.jm:before {
    background-position: -36px -858px;
}

.flag.jo:before,
.flag.jordan:before {
    background-position: -36px -884px;
}

.flag.japan:before,
.flag.jp:before {
    background-position: -36px -910px;
}

.flag.ke:before,
.flag.kenya:before {
    background-position: -36px -936px;
}

.flag.kg:before,
.flag.kyrgyzstan:before {
    background-position: -36px -962px;
}

.flag.cambodia:before,
.flag.kh:before {
    background-position: -36px -988px;
}

.flag.ki:before,
.flag.kiribati:before {
    background-position: -36px -1014px;
}

.flag.comoros:before,
.flag.km:before {
    background-position: -36px -1040px;
}

.flag.kn:before,
.flag.saint.kitts.and.nevis:before {
    background-position: -36px -1066px;
}

.flag.kp:before,
.flag.north.korea:before {
    background-position: -36px -1092px;
}

.flag.kr:before,
.flag.south.korea:before {
    background-position: -36px -1118px;
}

.flag.kuwait:before,
.flag.kw:before {
    background-position: -36px -1144px;
}

.flag.cayman.islands:before,
.flag.ky:before {
    background-position: -36px -1170px;
}

.flag.kazakhstan:before,
.flag.kz:before {
    background-position: -36px -1196px;
}

.flag.la:before,
.flag.laos:before {
    background-position: -36px -1222px;
}

.flag.lb:before,
.flag.lebanon:before {
    background-position: -36px -1248px;
}

.flag.lc:before,
.flag.saint.lucia:before {
    background-position: -36px -1274px;
}

.flag.li:before,
.flag.liechtenstein:before {
    background-position: -36px -1300px;
}

.flag.lk:before,
.flag.sri.lanka:before {
    background-position: -36px -1326px;
}

.flag.liberia:before,
.flag.lr:before {
    background-position: -36px -1352px;
}

.flag.lesotho:before,
.flag.ls:before {
    background-position: -36px -1378px;
}

.flag.lithuania:before,
.flag.lt:before {
    background-position: -36px -1404px;
}

.flag.lu:before,
.flag.luxembourg:before {
    background-position: -36px -1430px;
}

.flag.latvia:before,
.flag.lv:before {
    background-position: -36px -1456px;
}

.flag.libya:before,
.flag.ly:before {
    background-position: -36px -1482px;
}

.flag.ma:before,
.flag.morocco:before {
    background-position: -36px -1508px;
}

.flag.mc:before,
.flag.monaco:before {
    background-position: -36px -1534px;
}

.flag.md:before,
.flag.moldova:before {
    background-position: -36px -1560px;
}

.flag.me:before,
.flag.montenegro:before {
    background-position: -36px -1586px;
}

.flag.madagascar:before,
.flag.mg:before {
    background-position: -36px -1613px;
}

.flag.marshall.islands:before,
.flag.mh:before {
    background-position: -36px -1639px;
}

.flag.macedonia:before,
.flag.mk:before {
    background-position: -36px -1665px;
}

.flag.mali:before,
.flag.ml:before {
    background-position: -36px -1691px;
}

.flag.burma:before,
.flag.mm:before,
.flag.myanmar:before {
    background-position: -36px -1717px;
}

.flag.mn:before,
.flag.mongolia:before {
    background-position: -36px -1743px;
}

.flag.macao:before,
.flag.mo:before {
    background-position: -36px -1769px;
}

.flag.mp:before,
.flag.northern.mariana.islands:before {
    background-position: -36px -1795px;
}

.flag.martinique:before,
.flag.mq:before {
    background-position: -36px -1821px;
}

.flag.mauritania:before,
.flag.mr:before {
    background-position: -36px -1847px;
}

.flag.montserrat:before,
.flag.ms:before {
    background-position: -36px -1873px;
}

.flag.malta:before,
.flag.mt:before {
    background-position: -36px -1899px;
}

.flag.mauritius:before,
.flag.mu:before {
    background-position: -36px -1925px;
}

.flag.maldives:before,
.flag.mv:before {
    background-position: -36px -1951px;
}

.flag.malawi:before,
.flag.mw:before {
    background-position: -36px -1977px;
}

.flag.mexico:before,
.flag.mx:before {
    background-position: -72px 0;
}

.flag.malaysia:before,
.flag.my:before {
    background-position: -72px -26px;
}

.flag.mozambique:before,
.flag.mz:before {
    background-position: -72px -52px;
}

.flag.na:before,
.flag.namibia:before {
    background-position: -72px -78px;
}

.flag.nc:before,
.flag.new.caledonia:before {
    background-position: -72px -104px;
}

.flag.ne:before,
.flag.niger:before {
    background-position: -72px -130px;
}

.flag.nf:before,
.flag.norfolk.island:before {
    background-position: -72px -156px;
}

.flag.ng:before,
.flag.nigeria:before {
    background-position: -72px -182px;
}

.flag.ni:before,
.flag.nicaragua:before {
    background-position: -72px -208px;
}

.flag.netherlands:before,
.flag.nl:before {
    background-position: -72px -234px;
}

.flag.no:before,
.flag.norway:before {
    background-position: -72px -260px;
}

.flag.nepal:before,
.flag.np:before {
    background-position: -72px -286px;
}

.flag.nauru:before,
.flag.nr:before {
    background-position: -72px -312px;
}

.flag.niue:before,
.flag.nu:before {
    background-position: -72px -338px;
}

.flag.new.zealand:before,
.flag.nz:before {
    background-position: -72px -364px;
}

.flag.om:before,
.flag.oman:before {
    background-position: -72px -390px;
}

.flag.pa:before,
.flag.panama:before {
    background-position: -72px -416px;
}

.flag.pe:before,
.flag.peru:before {
    background-position: -72px -442px;
}

.flag.french.polynesia:before,
.flag.pf:before {
    background-position: -72px -468px;
}

.flag.new.guinea:before,
.flag.pg:before {
    background-position: -72px -494px;
}

.flag.ph:before,
.flag.philippines:before {
    background-position: -72px -520px;
}

.flag.pakistan:before,
.flag.pk:before {
    background-position: -72px -546px;
}

.flag.pl:before,
.flag.poland:before {
    background-position: -72px -572px;
}

.flag.pm:before,
.flag.saint.pierre:before {
    background-position: -72px -598px;
}

.flag.pitcairn.islands:before,
.flag.pn:before {
    background-position: -72px -624px;
}

.flag.pr:before,
.flag.puerto.rico:before {
    background-position: -72px -650px;
}

.flag.palestine:before,
.flag.ps:before {
    background-position: -72px -676px;
}

.flag.portugal:before,
.flag.pt:before {
    background-position: -72px -702px;
}

.flag.palau:before,
.flag.pw:before {
    background-position: -72px -728px;
}

.flag.paraguay:before,
.flag.py:before {
    background-position: -72px -754px;
}

.flag.qa:before,
.flag.qatar:before {
    background-position: -72px -780px;
}

.flag.re:before,
.flag.reunion:before {
    background-position: -72px -806px;
}

.flag.ro:before,
.flag.romania:before {
    background-position: -72px -832px;
}

.flag.rs:before,
.flag.serbia:before {
    background-position: -72px -858px;
}

.flag.ru:before,
.flag.russia:before {
    background-position: -72px -884px;
}

.flag.rw:before,
.flag.rwanda:before {
    background-position: -72px -910px;
}

.flag.sa:before,
.flag.saudi.arabia:before {
    background-position: -72px -936px;
}

.flag.sb:before,
.flag.solomon.islands:before {
    background-position: -72px -962px;
}

.flag.sc:before,
.flag.seychelles:before {
    background-position: -72px -988px;
}

.flag.gb.sct:before,
.flag.scotland:before {
    background-position: -72px -1014px;
}

.flag.sd:before,
.flag.sudan:before {
    background-position: -72px -1040px;
}

.flag.se:before,
.flag.sweden:before {
    background-position: -72px -1066px;
}

.flag.sg:before,
.flag.singapore:before {
    background-position: -72px -1092px;
}

.flag.saint.helena:before,
.flag.sh:before {
    background-position: -72px -1118px;
}

.flag.si:before,
.flag.slovenia:before {
    background-position: -72px -1144px;
}

.flag.jan.mayen:before,
.flag.sj:before,
.flag.svalbard:before {
    background-position: -72px -1170px;
}

.flag.sk:before,
.flag.slovakia:before {
    background-position: -72px -1196px;
}

.flag.sierra.leone:before,
.flag.sl:before {
    background-position: -72px -1222px;
}

.flag.san.marino:before,
.flag.sm:before {
    background-position: -72px -1248px;
}

.flag.senegal:before,
.flag.sn:before {
    background-position: -72px -1274px;
}

.flag.so:before,
.flag.somalia:before {
    background-position: -72px -1300px;
}

.flag.sr:before,
.flag.suriname:before {
    background-position: -72px -1326px;
}

.flag.sao.tome:before,
.flag.st:before {
    background-position: -72px -1352px;
}

.flag.el.salvador:before,
.flag.sv:before {
    background-position: -72px -1378px;
}

.flag.sy:before,
.flag.syria:before {
    background-position: -72px -1404px;
}

.flag.swaziland:before,
.flag.sz:before {
    background-position: -72px -1430px;
}

.flag.caicos.islands:before,
.flag.tc:before {
    background-position: -72px -1456px;
}

.flag.chad:before,
.flag.td:before {
    background-position: -72px -1482px;
}

.flag.french.territories:before,
.flag.tf:before {
    background-position: -72px -1508px;
}

.flag.tg:before,
.flag.togo:before {
    background-position: -72px -1534px;
}

.flag.th:before,
.flag.thailand:before {
    background-position: -72px -1560px;
}

.flag.tajikistan:before,
.flag.tj:before {
    background-position: -72px -1586px;
}

.flag.tk:before,
.flag.tokelau:before {
    background-position: -72px -1612px;
}

.flag.timorleste:before,
.flag.tl:before {
    background-position: -72px -1638px;
}

.flag.tm:before,
.flag.turkmenistan:before {
    background-position: -72px -1664px;
}

.flag.tn:before,
.flag.tunisia:before {
    background-position: -72px -1690px;
}

.flag.to:before,
.flag.tonga:before {
    background-position: -72px -1716px;
}

.flag.tr:before,
.flag.turkey:before {
    background-position: -72px -1742px;
}

.flag.trinidad:before,
.flag.tt:before {
    background-position: -72px -1768px;
}

.flag.tuvalu:before,
.flag.tv:before {
    background-position: -72px -1794px;
}

.flag.taiwan:before,
.flag.taiwan\(china\):before,
.flag.tw:before {
    background-position: -72px -1820px;
}

.flag.tanzania:before,
.flag.tz:before {
    background-position: -72px -1846px;
}

.flag.ua:before,
.flag.ukraine:before {
    background-position: -72px -1872px;
}

.flag.ug:before,
.flag.uganda:before {
    background-position: -72px -1898px;
}

.flag.um:before,
.flag.us.minor.islands:before {
    background-position: -72px -1924px;
}

.flag.america:before,
.flag.united.states:before,
.flag.us:before {
    background-position: -72px -1950px;
}

.flag.uruguay:before,
.flag.uy:before {
    background-position: -72px -1976px;
}

.flag.uz:before,
.flag.uzbekistan:before {
    background-position: -108px 0;
}

.flag.va:before,
.flag.vatican.city:before {
    background-position: -108px -26px;
}

.flag.saint.vincent:before,
.flag.vc:before {
    background-position: -108px -52px;
}

.flag.ve:before,
.flag.venezuela:before {
    background-position: -108px -78px;
}

.flag.british.virgin.islands:before,
.flag.vg:before {
    background-position: -108px -104px;
}

.flag.us.virgin.islands:before,
.flag.vi:before {
    background-position: -108px -130px;
}

.flag.vietnam:before,
.flag.vn:before {
    background-position: -108px -156px;
}

.flag.vanuatu:before,
.flag.vu:before {
    background-position: -108px -182px;
}

.flag.gb.wls:before,
.flag.wales:before {
    background-position: -108px -208px;
}

.flag.wallis.and.futuna:before,
.flag.wf:before {
    background-position: -108px -234px;
}

.flag.samoa:before,
.flag.ws:before {
    background-position: -108px -260px;
}

.flag.ye:before,
.flag.yemen:before {
    background-position: -108px -286px;
}

.flag.mayotte:before,
.flag.yt:before {
    background-position: -108px -312px;
}

.flag.south.africa:before,
.flag.za:before {
    background-position: -108px -338px;
}

.flag.zambia:before,
.flag.zm:before {
    background-position: -108px -364px;
}

.flag.zimbabwe:before,
.flag.zw:before {
    background-position: -108px -390px;
}
.invite-page {
    width: 100%;
    background: #fff;
}
.invite-page .banner {
    width: 100%;
    height: 250px;
    background: url(../images/fg/invite_banner.png) no-repeat center center;
    background-size: cover;
}
.invite-page .banner .text {
    margin: 0 auto;
    width: 1140px;
    box-sizing: border-box;
    padding-top: 80px;
    color: #344563;
    font-weight: 400;
}

.invite-page .banner .text h1 {
    font-size: 32px;
    line-height: 44px;
}
.invite-page .banner .text h2 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 24px;
}
.invite-page .invite-wrapper {
    margin: 0 auto;
    width: 1140px;
    height: auto;
    padding: 42px 0 62px;
}
.invite-page .step1 {
    margin-bottom: 80px;
}
.invite-page .invite-step .title {
    font-size: 28px;
    color: #344563;
    line-height: 40px;
}
.invite-page .invite-step .text {
    margin-top: 16px;
    font-size: 16px;
    color: #6c727d;
    line-height: 30px;
}
.invite-page .copy-group {
    margin-top: 34px;
    width: 100%;
}
.invite-page .copy-group .copy-text {
    width: 466px;
    height: 46px;
    outline: none;
    border: none;
    padding: 0 18px;
    border-radius: 3px;
    background: #f2f7ff;
    font-size: 15px;
    color: #344563;
    line-height: 46px;
}
.invite-page .copy-group .copy-btn {
    margin-left: 16px;
    width: 110px;
    height: 46px;
    outline: none;
    border: none;
    border-radius: 3px;
    background: #2478ff;
    font-size: 16px;
    color: #fff;
}
.invite-page .wxcode-group {
    margin-top: 23px;
    width: 100%;
    box-sizing: border-box;
    /*padding-left: 234px;*/
}
.invite-page .wxcode-item {
    width: 110px;
    height: auto;
}
.invite-page .wxcode-item .wxcode {
    margin-bottom: 13px;
    width: 200px;
    height: 200px;
    border-radius: 3px;
}
.invite-page .wxcode-group .wx-text {
    width: 200px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
}
.invite-page .mt48 {
    margin-top: 48px;
}
.invite-page .shareWxImg {
    margin-top: 30px;
    width: 870px;
    height: auto;
}

/*solution*/
.solution-groups {
    margin: 0 auto;
    position: relative;
    top: -72px;
    width: 1140px;
    height: auto;
    box-sizing: border-box;
    padding: 45px 56px;
    background: #ffffff;
    box-shadow: 0px 12px 24px -6px rgba(9, 30, 66, 0.25),
        0px 0px 1px 0px rgba(9, 30, 66, 0.31);
}
.solution-groups .inner-title {
    font-size: 45px;
    line-height: 59px;
    text-align: center;
    color: #344563;
}
.solution-groups .solution-list {
    margin-top: 40px;
    flex-wrap: wrap;
    /*overflow: hidden;*/
}
.solution-groups .solution-list .item {
    margin-bottom: 24px;
    width: 500px;
    height: 150px;
    box-sizing: border-box;
    padding: 0 34px 0 20px;
    box-shadow: 0px 7px 14px -4px rgba(9, 30, 66, 0.25);
    align-items: center;
}
.solution-groups .solution-list .item .shop_logo {
    width: 172px;
    height: 98px;
}
.solution-groups .solution-list .item .shop_name {
    max-width: 260px;
    font-size: 16px;
    color: #344563;
}
.solution-groups .more {
    margin: 32px auto 0;
    display: block;
    width: 260px;
    height: 44px;
    background: #0061ff;
    text-align: center;
    line-height: 44px;
    color: #fff;
    font-size: 16px;
}
.solution-groups .more:hover {
    opacity: 0.8;
}
.solution-groups .list-empty {
    margin-top: 40px;
    font-size: 14px;
    color: #344563;
    text-align: center;
    line-height: 40px;
}

/*shop*/
.shop-header {
    width: 100%;
    height: 60px;
    background: #0061ff;
}
.shop-header .inner {
    margin: 0 auto;
    width: 1140px;
    height: 60px;
    align-items: center;
}
.shop-header .inner .name {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}
.shop-header .inner .message {
    width: 28px;
    height: 28px;
}
.shop-header .inner .message .icon {
    display: block;
    width: 100%;
    height: 100%;
}
.shop {
    margin: 16px auto 0;
    width: 1140px;
    min-height: 780px;
    padding-bottom: 20px;
}
.shop .left-menu {
    width: 180px;
    min-height: 780px;
    box-sizing: border-box;
    padding-top: 2px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0px 8px 16px -4px rgba(9, 30, 66, 0.25);
}
.shop .left-menu .item {
    display: block;
    width: 100%;
    height: 54px;
    box-sizing: border-box;
    padding: 0 10px 0 22px;
    font-size: 16px;
    line-height: 54px;
    color: #344563;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.shop .left-menu .item.active,
.shop .left-menu .item:hover {
    color: #0061ff;
}
.shop .right-block {
    width: 942px;
    min-height: 780px;
    box-sizing: border-box;
    padding: 0 18px 40px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0px 8px 16px -4px rgba(9, 30, 66, 0.25);
}
.shop .right-block .block-title {
    position: relative;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 0 12px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 16px;
    color: #344563;
    line-height: 48px;
}
.shop .right-block .block-title .link {
    color: #c5c8cd;
}
.shop .right-block .block-title .arrow {
    color: #c5c8cd;
}
.shop .right-block .block-title .other-link {
    font-size: 14px;
    color: #0061ff;
}
.shop .right-block .block-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: #0061ff;
}
/*shopIndex*/
.shopIndex {
    padding-top: 18px;
    flex-wrap: wrap;
}
.shopIndex .item {
    width: 441px;
    height: 115px;
    box-sizing: border-box;
    border: 1px solid #f4f4f4;
    padding: 0 24px;
    align-items: center;
}
.shopIndex .item .item-content {
    flex: 1;
    box-sizing: border-box;
    padding-right: 20px;
}
.shopIndex .item-content .title {
    font-size: 16px;
    line-height: 22px;
    color: #344563;
}
.shopIndex .item-content .desc {
    margin-top: 10px;
    font-size: 12px;
    line-height: 16px;
    color: #344563;
}
.shopIndex .item .link {
    width: 78px;
    height: 30px;
    border-radius: 2px;
    background: #0061ff;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: #fff;
}
.shopIndex .item .link:hover {
    opacity: 0.8;
}
/*shopInfo*/
.shopInfo {
    padding-top: 57px;
}
.form-groups .form-group {
    margin-bottom: 30px;
    width: 100%;
}
.form-groups .form-group .form-label {
    width: 308px;
    min-height: 44px;
    box-sizing: border-box;
    padding-right: 24px;
    text-align: right;
    align-items: center;
    line-height: 44px;
    color: #000;
    font-size: 16px;
}
.form-groups .form-group .form-label.form-label2line {
    padding-top: 12px;
}
.form-groups .form-group .form-label.form-label2line .main-line {
    font-size: 16px;
    color: #000;
    line-height: 22px;
}
.sub-line {
    margin-top: 8px;
    font-size: 12px;
    color: #344563;
    line-height: 16px;
}
.form-groups .form-group .form-content {
    flex: 1;
    height: auto;
}
.form-groups .form-group .form-content .tip {
    margin-top: 8px;
    font-size: 12px;
    color: #ff5630;
    line-height: 18px;
}
.form-groups .form-group .form-text {
    line-height: 44px;
    font-size: 14px;
    color: #344563;
}
.form-groups .form-upload {
    position: relative;
    width: 142px;
    height: 80px;
}
.form-groups .form-upload .form-file {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.form-groups .form-upload .fileUpload {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(9, 30, 66, 0.08);
    border-radius: 4px;
    cursor: pointer;
}
.form-groups .form-upload .fileUpload .add {
    margin: 0 auto;
    display: block;
    width: 26px;
    height: 26px;
}
.form-groups .form-upload .fileUpload .text {
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #bbb;
}
.form-groups .form-upload .thumb {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
/*logo上传*/
.form-groups .form-logo .fileUpload {
    padding-top: 16px;
}
.form-groups .form-logo .fileUpload .text {
    margin-top: 2px;
}
/*身份证*/
.form-groups .form-id {
    width: 184px;
    height: 130px;
}
.form-groups .form-id:first-child {
    margin-right: 14px;
}
.form-groups .form-id .fileUpload {
    padding-top: 28px;
}
.form-groups .form-id .fileUpload .text {
    margin-top: 12px;
}
/*身份证 展示*/
.form-groups .form-idWithText {
    width: 184px;
    height: 162px;
}
.form-groups .form-idWithText:first-child {
    margin-right: 14px;
}
.form-groups .form-idWithText .thumb {
    width: 184px;
    height: 130px;
}
.form-groups .form-idWithText .text {
    margin-top: 10px;
    text-align: center;
    line-height: 22px;
    font-size: 16px;
    color: #000;
}
/*营业执照*/
.form-groups .form-shopId {
    width: 369px;
    height: 165px;
}
.form-groups .form-shopId .fileUpload {
    padding-top: 50px;
}
.form-groups .form-shopId .fileUpload .text {
    margin-top: 12px;
}
/*输入框*/
.form-groups .form-input {
    width: 382px;
    height: 44px;
}
.form-groups .form-input .inner-input {
    display: block;
    width: 100%;
    height: 44px;
    border: 1px solid rgba(9, 30, 66, 0.08);
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 12px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    font-size: 16px;
    color: #000;
}
.form-groups .form-input .inner-input::-webkit-input-placeholder,
.form-groups .form-input .inner-input::-moz-placeholder,
.form-groups .form-input .inner-input:-moz-placeholder,
.form-groups .form-input .inner-input:-ms-input-placeholder {
    color: #c5c8cd;
}
.form-groups .form-input .inner-input:focus {
    border-color: #0061ff;
}
/*文本域*/
.form-groups .form-textarea {
    width: 382px;
    height: 215px;
}
.form-groups .form-textarea .inner-textarea {
    display: block;
    width: 100%;
    height: 215px;
    outline: none !important;
    resize: none;
    border: 1px solid rgba(9, 30, 66, 0.08);
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 12px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    font-size: 16px;
    color: #000;
    line-height: 44px;
}
.form-groups .form-textarea .inner-textarea::-webkit-input-placeholder,
.form-groups .form-textarea .inner-textarea::-moz-placeholder,
.form-groups .form-textarea .inner-textarea:-moz-placeholder,
.form-groups .form-textarea .inner-textarea:-ms-input-placeholder {
    color: #c5c8cd;
}
.form-groups .form-textarea .inner-textarea:focus {
    border-color: #0061ff;
}
.form-groups .form-check {
    height: 44px;
    align-items: center;
}
/*按钮组*/
.form-groups .btn-group {
    width: 100%;
    justify-content: center;
}
.form-groups .btn-group .btn {
    margin: 0 6px;
    display: block;
    width: 178px;
    height: 44px;
    border-radius: 4px;
    border: none;
    outline: none;
    background: #0061ff;
    font-size: 16px;
    text-align: center;
    line-height: 44px;
    color: #fff;
    cursor: pointer;
}
.form-groups .btn-group .btn:hover,
.form-groups .btn-group .btn:active {
    opacity: 0.8;
}
.form-groups .btn-group .btn-prev,
.form-groups .btn-group .btn-next {
    width: 136px;
}
.form-groups .btn-group .btn-prev {
    background: #eaf2ff;
    color: #0061ff;
}
/*join*/
.step-groups {
    margin-top: 48px;
    box-sizing: border-box;
    padding: 0 28px;
}
.step-groups .step-group {
    box-sizing: border-box;
    padding: 0 28px;
}
.step-group .step {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}
.step-group .step .num {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #eaf2ff;
    text-align: center;
    line-height: 54px;
    font-size: 28px;
    color: #0061ff;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.step-group .step .line {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 4;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background: #eaf2ff;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.step-group .step.step1 {
    width: 198px;
}
.step-group .step.step1 .num {
    float: left;
}
.step-group .step.step2 {
    flex: 1;
}
.step-group .step.step3 {
    width: 198px;
}
.step-group .step.step3 .num {
    float: right;
}
.step-group .step.active .num {
    background: #0061ff;
    color: #fff;
}
.step-group .step.step1.active .line {
    background: #0061ff;
}
.step-group .step.step2.active .line {
    background: #0061ff;
}
.step-group .step.step3.active .line {
    background: #0061ff;
}

.step-groups .step-text {
    margin-top: 28px;
}
.step-groups .step-text .text {
    flex: 1;
    font-size: 18px;
    line-height: 24px;
    color: #344563;
}
.step-groups .step-text .step2 {
    text-align: center;
}
.step-groups .step-text .step3 {
    text-align: right;
}
/*joinInof*/
.joinInfo {
    margin-top: 48px;
}
.joinInfo .w225 {
    width: 225px;
}
.joinInfo .ml24 {
    margin-left: 24px;
}
.joinInfo .first-title {
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    color: #344563;
}
.joinInfo .sub-title {
    margin-top: 8px;
    margin-bottom: 21px;
    line-height: 16px;
    font-size: 12px;
    text-align: center;
    color: #344563;
}
/*joinFee*/
.shopDegree {
    margin-top: 24px;
    width: 100%;
}
.shopDegree .card {
    width: 360px;
    height: 118px;
    box-sizing: border-box;
    padding: 32px 24px 0;
    background: url(../images/fg/shopDegree.png) no-repeat center;
    background-size: 100% 100%;
}
.shopDegree .card .now {
    font-size: 12px;
    color: #344563;
    line-height: 26px;
}
.shopDegree .card .now span {
    font-size: 18px;
}
.shopDegree .card .deadline {
    margin-top: 11px;
    font-size: 12px;
    line-height: 16px;
    color: #344563;
}
.feeTitle {
    margin-top: 52px;
    position: relative;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 0 12px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 16px;
    color: #344563;
    line-height: 48px;
}
.feeTitle span {
    font-size: 12px;
    line-height: 48px;
    color: #475775;
}
.fee-list {
    margin-top: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.fee-list .fee-item {
    position: relative;
    margin-right: 34px;
    width: 201px;
    height: 106px;
    box-sizing: border-box;
    padding-top: 32px;
    border-radius: 4px;
    background: #e5efff;
    cursor: pointer;
}
.fee-list .fee-item:nth-child(4n) {
    margin-right: 0;
}
.fee-list .fee-item .icon_select,
.fee-list .fee-item .icon_selected {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
}
.fee-list .fee-item .icon_selected {
    display: none;
}
.fee-list .fee-item .fee-name {
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    color: #344563;
}
.fee-list .fee-item .fee-all {
    margin-top: 6px;
    text-align: center;
    line-height: 38px;
    font-size: 28px;
    color: #344563;
}
.fee-list .fee-item .fee-all span {
    font-size: 22px;
}
.fee-list .fee-item.selected .icon_selected {
    display: block;
}
.fee-list .fee-item.selected .icon_select {
    display: none;
}
/*orderCheck*/
.orderCheck {
    padding-top: 68px;
}
.orderCheck .payName {
    text-align: center;
    font-size: 12px;
    color: #344563;
    line-height: 16px;
}
.orderCheck .payAll {
    margin-top: 6px;
    text-align: center;
    font-size: 28px;
    color: #344563;
    line-height: 38px;
}
.orderCheck .payAll span {
    font-size: 22px;
}
.orderCheck .pay-type {
    margin-top: 18px;
}
.orderCheck .pay-type .item {
    margin: 0 auto 14px;
    width: 182px;
    height: 50px;
    box-sizing: border-box;
    padding-left: 32px;
    background: #f7f7f7;
    align-items: center;
    cursor: pointer;
}
.orderCheck .pay-type .item:last-child {
    margin-bottom: 0;
}
.orderCheck .pay-type .item .icon {
    width: 24px;
    height: 24px;
}
.orderCheck .pay-type .item .name {
    flex: 1;
    box-sizing: border-box;
    padding-left: 18px;
    font-size: 14px;
    color: #344563;
    line-height: 22px;
}
.orderCheck .pay-code {
    margin-top: 32px;
    width: 100%;
    height: auto;
}
.orderCheck .pay-code .code-wrapper {
    margin: 0 auto;
    width: 152px;
    height: auto;
}
.orderCheck .pay-code .code-wrapper .code {
    width: 152px;
    height: 152px;
    border-radius: 4px;
}
.orderCheck .pay-code .code-wrapper .text {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #344563;
}
.orderCheck .pay-code .code-wrapper .btn {
    display: block;
    margin: 10px auto;
    width: 120px;
    height: 44px;
    border-radius: 4px;
    border: none;
    background: #0061ff;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
/*orderResult*/
.orderResult {
    margin-top: 48px;
}
.orderResult .icon {
    display: block;
    margin: 0 auto;
    width: 128px;
    height: 128px;
}
.orderResult .icon .thumb {
    display: block;
    width: 100%;
    height: 100%;
}
.orderResult .text {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #344563;
}
.orderResult .btn-group .btn-retry {
    background: #eaf2ff;
    color: #0061ff;
}
/*listRecord*/
.listRecord .record-empty {
    text-align: center;
    font-size: 14px;
    color: #344563;
    line-height: 64px;
}
.listRecord .item {
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
    border-bottom: 1px solid #e5e5e5;
}
.listRecord .item:hover {
    background: rgba(197, 200, 205, 0.2);
}
/*feeRecord*/
.feeRecord {
    margin-top: 18px;
}
.feeRecord .item {
    width: 100%;
    height: 65px;
    font-size: 14px;
    color: #344563;
    line-height: 64px;
    cursor: pointer;
}
/*mesageRecord*/
.messageRecord {
    margin-top: 3px;
}
.messageRecord .item {
    margin-bottom: 7px;
    height: 79px;
    align-items: center;
}
.messageRecord .item:last-child {
    margin-bottom: 0;
}
.messageRecord .item .left {
    flex: 1;
    overflow: hidden;
}
.messageRecord .item .left .type {
    font-size: 14px;
    line-height: 20px;
    color: #344563;
}
.messageRecord .item .left .des {
    margin-top: 12px;
    font-size: 12px;
    color: #344563;
    line-height: 18px;
}
.messageRecord .item .right {
    width: 140px;
}
.messageRecord .item .right .manage {
    width: 100%;
    justify-content: flex-end;
}
.messageRecord .item .right .manage .icon {
    margin-left: 12px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.messageRecord .item .right .date {
    margin-top: 16px;
    font-size: 12px;
    color: #96a2b9;
    line-height: 18px;
    text-align: right;
}
/*page-wrapper*/
.page-wrapper {
    justify-content: flex-end;
}
/*shopAnalysis*/
.shopAnalysis {
    margin-top: 24px;
}
.shopAnalysis .count-blocks {
    width: 100%;
    justify-content: space-between;
}
.shopAnalysis .count-blocks .count-block {
    width: 208px;
    height: 88px;
    box-sizing: border-box;
    padding: 18px 12px;
    background: #ffffff;
    box-shadow: 0px 2px 19px -1px rgba(153, 170, 199, 0.25);
}
.shopAnalysis .count-block .num {
    font-size: 22px;
    line-height: 28px;
    color: #344563;
}
.shopAnalysis .count-block .text {
    color: #858585;
    font-size: 12px;
    line-height: 18px;
}
.shopAnalysis .chart-container {
    margin-top: 24px;
    width: 100%;
    min-height: 420px;
    box-sizing: border-box;
    padding: 0 20px 20px;
    background: #ffffff;
    box-shadow: 0px 2px 19px -1px rgba(153, 170, 199, 0.25);
}
.shopAnalysis .chart-container .title {
    margin-bottom: 20px;
    height: 46px;
    box-sizing: border-box;
    padding-top: 1px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 14px;
    color: #344563;
    line-height: 44px;
}
.shopAnalysis .chart-container .chart-tab {
    width: 320px;
    height: 38px;
    box-sizing: border-box;
    border: 1px solid #e8ebef;
    border-radius: 18px;
}
.shopAnalysis .chart-container .chart-tab .item {
    width: 106px;
    height: 36px;
    border-radius: 18px;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    color: #b6bcc5;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    cursor: pointer;
}
.shopAnalysis .chart-container .chart-tab .item:hover,
.shopAnalysis .chart-container .chart-tab .item.active {
    background: #0061ff;
    color: #fff;
}
.shopAnalysis .chart-container .chart {
    margin-top: 20px;
    width: 100%;
    height: 360px;
}
/*layout 授权弹窗*/
.layout {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.fixed-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 810px;
    height: auto;
    min-height: 600px;
    box-sizing: border-box;
    padding: 30px 40px 62px;
    background: #fff;
}
.fixed-wrapper .close {
    position: absolute;
    top: -51px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.fixed-wrapper .wrapper-title {
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    line-height: 64px;
    font-size: 30px;
    color: #344563;
}
.fixed-wrapper .prtocol-text {
    width: 100%;
    height: auto;
    max-height: 450px;
    font-size: 14px;
    line-height: 32px;
    color: #344563;
    overflow-x: hidden;
    overflow-y: auto;
}
.fixed-wrapper .link {
    margin-top: 20px;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: #0061ff;
}
.fixed-wrapper .btn-wrapper {
    margin-top: 68px;
    width: 100%;
}
.fixed-wrapper .btn-wrapper .btn {
    display: block;
    margin: 0 auto;
    width: 260px;
    height: 44px;
    border-radius: 4px;
    background: #0061ff;
    font-size: 16px;
    line-height: 44px;
    text-align: center;
    color: #fff;
}
.fixed-wrapper .btn-wrapper .btn:hover {
    opacity: 0.8;
}

/*download*/
.download-wrapper {
    position: fixed;
    width: 414px;
    height: auto;
    min-height: 460px;
    box-sizing: border-box;
    padding: 24px 58px 36px;
    background: #fff;
}
.download-wrapper .down-title {
    width: 100%;
    text-align: center;
    line-height: 24px;
    font-size: 20px;
    color: #344563;
}
.download-wrapper .tab {
    margin-top: 10px;
    width: 100%;
    height: 45px;
}
.download-wrapper .tab .tab-item {
    flex: 1;
    height: 45px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    font-size: 14px;
    line-height: 44px;
    text-align: center;
    color: rgba(229, 229, 229, 1);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    cursor: pointer;
}
.download-wrapper .tab .tab-item:hover,
.download-wrapper .tab .tab-item.active {
    border-color: #0061ff;
    color: #0061ff;
}
.download-wrapper .tab-content {
    width: 100%;
    height: auto;
}
.download-wrapper .tab-content .tab-contentItem {
    display: none;
    width: 100%;
    height: auto;
}
.download-wrapper .tab-content .tab-contentItem.active {
    display: block;
}
.download-wrapper .btn-groups {
    margin-top: 22px;
    justify-content: center;
    align-items: center;
}
.download-wrapper .btn-groups .btn {
    display: inline-block;
    width: 136px;
    height: 44px;
    border-radius: 3px;
    background: #0061ff;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
.download-wrapper .btn-groups .btn:hover {
    opacity: 0.8;
}
.download-wrapper .btn-groups .btn.cancel {
    margin-right: 12px;
    background: #eaf2ff;
    color: #0061ff;
}
.download-wrapper .tip {
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    color: #344563;
}
.download-wrapper .inner-groups {
    margin-top: 24px;
    height: 226px;
}
.download-wrapper .form-group {
    margin-bottom: 15px;
}
.download-wrapper .form-group:last-child {
    margin-bottom: 0;
}
.download-wrapper .form-group .form-label {
    width: 76px;
    font-size: 14px;
    line-height: 32px;
    color: #000;
}
.download-wrapper .form-group .form-label span {
    font-size: 12px;
}
.download-wrapper .form-group .form-input {
    position: relative;
    flex: 1;
    overflow: hidden;
}
.download-wrapper .form-group .form-input .input {
    display: block;
    width: 100%;
    height: 32px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    padding: 0 32px 0 14px;
    font-size: 14px;
    color: #000;
}
.download-wrapper .form-group .form-input .control {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.download-wrapper .form-group .form-input .control .icon {
    width: 7px;
    height: 5px;
    cursor: pointer;
}
.download-wrapper .form-group .form-input .control .icon.up {
    margin-bottom: 4px;
}

/*range-groups*/
.inner-groups .range-group {
    margin-bottom: 20px;
}
.inner-groups .range-group:last-child {
    margin-bottom: 0;
}
.inner-groups .range-group .range-block {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    padding-top: 20px;
}
.inner-groups .range-group .range-name {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    color: #000;
}
/*loadings*/
.loadings {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}
.loadings .circleBox {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}
.circle {
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border: 8px solid white;
    border-left-color: #0061ff;
    border-right-color: #0061ff;
    border-radius: 50%;
    animation: loadings 1s infinite linear;
}
@keyframes loadings {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
