@charset "UTF-8";

/* common */
.iconfont-padding {
    padding: 6px;
}
/* header-mobile */
.header-mobile {
    display: none;
}
/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(192, 192, 192, 0.2);
}
.header.header-fixed {
    position: sticky;
    background-color: #fff;
}
.header .brand {
    flex: 0 0 200px;
    text-align: center;
    /* margin-left: 130px; */
}
.header .brand .logo {
    height: 100%;
    padding: 24px;
    /* background-color: #4287ff; */
}
.header .brand .logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.header .menu ul {
    display: flex;
}
.header .menu ul li {
    font-size: 18px;
    /* font-weight: bold; */
    padding: 27px 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.header .menu ul li a {
    color: #191919;
    text-decoration: none;
    transition: all 0.3s;
}

.header .menu ul li.active a {
    color: #4287ff;
}
.header .menu ul li:hover {
    background-color: #4287ff;
}
.header .menu ul li:hover a {
    color: #fff;
}

.header .actions {
    flex: 0 0 200px;
    display: flex;
    font-size: 14px;
}

.header .actions .language {
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background-color: #fff;
}
.header .actions .language i {
    margin: 0 4px;
    vertical-align: middle;
    transition: all 0.3s;
}
.header .actions .language.active .open {
    transform: rotate(180deg);
}
.header .actions .language .selection {
    position: absolute;
    bottom: -50px;
    left: -2px;
    background-color: #fff;
    text-align: center;
    border: solid 1px #eeeeee;
    display: none;
    box-shadow: 0 2px 4px rgba(192, 192, 192, 0.2);
    z-index: 100;
}
.header .actions .language .selection span {
    display: inline-block;
    padding: 20px 0;
    width: 130px;
    cursor: pointer;
}
.header .actions .language .selection span:hover {
    background-color: #eeeeee;
}
.header .actions .profile {
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.header .actions .profile img {
}
.header .actions .profile {
    width: 100px;
    background: #4287ff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.header .actions .profile a {
    text-decoration: none;
    color: #fff;
}
/* header-mobile */
.header-mobile {
    position: sticky;
    top: 0;
    background-color: #fff;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    z-index: 100;
}
.header-mobile .actions img {
    width: 24px;
    height: 24px;
}

.header-mobile .logo {
    height: 40px;
}
.header-mobile .logo img {
    max-width: 100%;
    max-height: 100%;
}
.header-mobile .menu img {
    width: 24px;
    height: 24px;
}
.header-mobile .header-mobile-mask {
    display: none;
    position: fixed;
    width: 100%;
    height: calc(100vh - 40px);
    top: 80px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 100;
    overflow: hidden;
}
.header-mobile .header-mobile-mask.active {
    display: block;
}
.header-mobile .nav-menu {
    width: 75%;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    position: absolute;
    right: 0;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.header-mobile .nav-menu ul {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}
.header-mobile .nav-menu .language {
    position: relative;
}
.header-mobile .nav-menu .language span {
    vertical-align: text-top;
}
.header-mobile .nav-menu .language i {
    font-size: 12px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle;
}
.header-mobile .nav-menu .language.active .open {
    transform: rotate(90deg);
}
.header-mobile .nav-menu .language .selection {
    position: absolute;
    bottom: -56px;
    left: 0;
    background-color: #fff;
    text-align: center;
    border: solid 1px #eeeeee;
    display: none;
    box-shadow: 0 2px 4px rgba(192, 192, 192, 0.2);
    z-index: 100;
    width: 100%;
}
.header-mobile .nav-menu .language .selection span {
    display: block;
    padding: 14px 0;
}

.header-mobile .nav-menu .back {
    font-size: 14px;
}
.header-mobile .nav-menu .back span {
    vertical-align: middle;
}
.header-mobile .nav-menu .back i {
    font-size: 10px;
    vertical-align: middle;
}
.header-mobile .nav-menu ul li {
    padding: 12px;
}
.header-mobile .nav-menu ul li.active {
    background-color: #f6f7fb;
    border-radius: 6px;
}
.header-mobile .nav-menu ul li a {
    display: inline-block;
    width: 100%;
    color: #191919;
}
.header-mobile .nav-menu .line {
    width: 100%;
    height: 1px;
    background-color: #f0f0f0;
}
.header-mobile .menu .open {
    display: none;
}
.header-mobile .menu .open.active {
    display: block;
}
.header-mobile .menu .close {
    display: none;
}
.header-mobile .menu .close.active {
    display: block;
}
.no-scroll {
    height: 100vh;
    overflow: hidden;
}

/* index-banner */
.index-banner {
    background-color: #eaf1fd;
    padding: 160px 0 80px 0;
    background: url("../images/index-banner-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.index-banner h1 {
    display: inline-block;
    /* 渐变文字 */
    background-image: linear-gradient(
        45deg,
        rgb(69, 187, 208),
        rgb(60, 120, 225),
        rgb(174, 99, 124)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 8px;
}
.index-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-banner-img {
    text-align: right;
}
.index-banner-img img {
    max-width: 60%;
    --animate-duration: 20s;
}
/* index-solutions */
.index-solutions {
    margin: 4% 0;
}
.index-solutions .item {
    margin: 10px 0;
}
.index-solutions .item .item-content {
    background-color: rgb(244, 246, 250);
}
.index-solutions .item:nth-child(odd) .item-content {
    background-color: rgb(240, 249, 255);
}
.index-solutions .item .item-content {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.index-solutions .item .item-content:hover {
    transform: translateY(-10px);
}
.index-solutions .item .item-content img {
    width: 60px;
    height: 60px;
}
.index-solutions .item .item-content h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px 0;
}
.index-solutions .item .item-content h5 {
    font-size: 14px;
    margin: 10px 0;
    height: 2em;
    color: #8f8f8f;
}

/* index-selections */
.index-selections {
    padding: 6%;
    background-image: url("../images/index-selections-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.index-selections .title h3 {
    color: #4287ff;
    font-size: 40px;
    margin: 0;
    font-weight: bold;
}
.index-selections .title h4 {
    font-size: 34px;
    margin: 24px 0 0 0;
    color: #595959;
}
.index-selections .title h5 {
    font-size: 30px;
    color: #4287ff;
    margin: 16px 0 0 0;
}
.index-selections .title .sub {
    margin: 40px 0 0 0;
}
.index-selections .title .sub img {
    width: 24px;
    height: 24px;
}
.index-selections .title .sub span {
    font-size: 24px;
    vertical-align: middle;
}
.section-selections .items {
    padding-top: 45px;
}
.section-selections .items .item {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s;
}
.section-selections .items .item:hover {
    transform: translateY(-10px);
}
.section-selections .items .item .title .thumb {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e7e7e7;
    float: left;
    margin: 0 10px 0 0;
}
.section-selections .items .item .title .thumb img {
    max-width: 100%;
}
.section-selections .items .item .title .hot {
    background: linear-gradient(270deg, #ff9664 0%, #ff7944 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    padding: 2px 4px;
}
.section-selections .items .item .title p {
    margin: 0;
}
.section-selections .items .item .title p small {
    color: #979797;
}
.section-selections .items .item .title p i {
    color: #ff9090;
}
.section-selections .items .item .brief {
    clear: both;
    margin-top: 24px;
    font-size: 14px;
    color: #191919;
}
.section-selections .items .item .evaluation {
    color: #888888;
    font-size: 12px;
}
.section-selections .items .item .actions {
    font-size: 14px;
}
.section-selections .items .item .actions i {
    font-size: 14px;
}
.section-selections .more {
    text-align: center;
}
.section-selections .more a {
    display: inline-block;
    padding: 10px 40px;
    color: #4287ff;
    border-radius: 10px;
    border: solid 1px #4287ff;
    font-size: 14px;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.section-selections .more a i {
    font-size: 14px;
}
.section-selections .more a:hover {
    background: #4287ff;
    color: #fff;
}
/* footer */
.footer {
    background-color: #38405e;
    padding: 3%;
}
.footer .footer-nav ul {
    font-size: 16px;
}
.footer .footer-nav ul li {
    display: inline-block;
    margin-right: 20px;
}
.footer .footer-nav ul li a {
    color: #fff;
}
.footer .line {
    height: 1px;
    background-color: #898e9f;
}
.footer .copyright {
    color: #fff;
    margin-top: 20px;
}
.footer .copyright a {
    color: #fff;
}
.footer .copyright small {
    font-size: 14px;
}
/* footer-mobile */
.footer-mobile {
    background-color: #38405e;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    display: none;
}
.footer-mobile a {
    color: #fff;
}
.footer-mobile p {
    margin: 0;
}
/* selections */
.content-banner {
    background-color: #eee;
    height: 300px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: url("../images/content-banner-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.content-banner h1 {
    /* 渐变文字 */
    display: inline-block;
    background-image: linear-gradient(
        45deg,
        rgb(69, 187, 208),
        rgb(60, 120, 225),
        rgb(174, 99, 124)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.content-banner h2 {
    margin-top: 10px;
    font-size: 28px;
    color: #595959;
}
.section-content {
    min-height: calc(100vh - 240px);
    background-color: #f4f7fc;
}
.section-content .pagination-wrapper {
    padding: 30px 0;
}
.section-content .pagination {
    justify-content: center;
}

/* selections detail */
.section-detail-wrapper {
    padding: 50px 0;
}
.section-detail-wrapper .section-detail {
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
    padding: 30px;
}

.selection-detail-wrapper .selection-detail .title .thumb {
    flex: 0 0 260px;
    margin-right: 30px;
}
.selection-detail-wrapper .selection-detail .title .thumb img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e7e7e7;
}
.selection-detail-wrapper .selection-detail .title .info {
    flex: 1 1 auto;
}
.selection-detail-wrapper .selection-detail .title .hot {
    background: linear-gradient(270deg, #ff9664 0%, #ff7944 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 16px;
    padding: 4px 8px;
}
.selection-detail-wrapper .selection-detail .title p {
    margin: 0;
}
.selection-detail-wrapper .selection-detail .title b {
    color: #272727;
    font-size: 28px;
    vertical-align: middle;
}
.selection-detail-wrapper .selection-detail .title small {
    color: #979797;
}
.selection-detail-wrapper .selection-detail .title i {
    color: #ff9090;
}
.selection-detail-wrapper .selection-detail .title .brief {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8em;
    max-width: 600px;
}
.selection-detail-wrapper .selection-detail .title .links {
    margin: 20px 0;
    position: relative;
}
.selection-detail-wrapper .selection-detail .title .links a {
    background: #4287ff;
    border-radius: 4px;
    color: #fff;
    padding: 8px 28px 8px 22px;
    margin-right: 20px;
    text-decoration: none;
}
.selection-detail-wrapper .selection-detail .title .links i {
    color: #fff;
}
.selection-detail-wrapper .selection-detail .title .links .qr-code-wrapper {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    padding: 40px;
    background-color: #fff;
    border-radius: 6px;
    border: solid 1px #eaeaea;
}
.selection-detail-wrapper
    .selection-detail
    .title
    .links
    .qr-code-wrapper
    .close {
    color: #000;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.selection-detail-wrapper .selection-detail .title .links .qr-code-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
}
.selection-detail-wrapper .selection-detail .title .evaluation {
    background: #f4f7fc;
    border-radius: 4px;
    padding: 14px 14px 28px 14px;
    color: #888;
    font-size: 14px;
}

.selection-detail-wrapper .selection-detail .content {
    margin: 40px 0;
}

/* cases */
.section-cases .items {
    padding-top: 45px;
}
.section-cases .items .item {
    margin: 15px 0;
}
.section-cases .items .item .thumb {
    height: 270px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
}
.section-cases .items .item .content {
    margin-top: -50px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.84),
        rgba(255, 255, 255, 1)
    );
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 24px;
}
.section-cases .items .item .content small {
    font-size: 18px;
    color: #595959;
}
.section-cases .items .item .content h3 {
    font-weight: bold;
    font-size: 24px;
    margin: 10px 0;
}
.section-cases .items .item .content p {
    color: #595959;
    font-size: 14px;
    line-height: 1.8em;
}
.section-cases .items .item .content .actions {
    text-align: right;
}
.section-cases .items .item .content .actions a {
    color: #fff;
    background-color: #4287ff;
    padding: 8px 28px;
    border-radius: 4px;
}

/* about */
.about-detail-wrapper {
    background-color: #fff;
    min-height: calc(100vh - 540px);
}
.about-detail-wrapper .about-detail {
    border: none;
    padding: 0;
}
.about-detail-wrapper .about-detail .about-img {
    text-align: right;
}
.about-detail-wrapper .about-detail .about-img img {
    max-width: 70%;
}
/* case-detail */
.case-detail-wrapper {
    background-color: #fff;
    min-height: calc(100vh - 540px);
}
.case-detail-wrapper .case-detail {
    border: none;
    padding: 0;
}
.case-detail .title {
    padding: 20px 0;
    border-bottom: solid 1px #e6e6e6;
}
.case-detail .title h1 {
    font-size: 26px;
}
.case-detail .title small {
    color: #5e5e5e;
    display: inline-block;
    margin-top: 10px;
}
.case-detail .content {
    margin: 40px 0;
}

/* news */
.section-news .items {
    padding-top: 45px;
}
.section-news .items .item {
    margin: 15px 0;
}
.section-news .items .item .thumb {
    height: 270px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
}
.section-news .items .item .content {
    margin-top: -50px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.84),
        rgba(255, 255, 255, 1)
    );
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 24px;
}
.section-news .items .item .content small {
    font-size: 18px;
    color: #595959;
}
.section-news .items .item .content h3 {
    font-weight: bold;
    font-size: 24px;
    margin: 10px 0;
}
.section-news .items .item .content p {
    color: #595959;
    font-size: 14px;
    line-height: 1.8em;
}
.section-news .items .item .content .actions {
    text-align: right;
}
.section-news .items .item .content .actions a {
    color: #fff;
    background-color: #4287ff;
    padding: 8px 28px;
    border-radius: 4px;
}

/* news-detail */
.news-detail-wrapper {
    background-color: #fff;
    min-height: calc(100vh - 540px);
}
.news-detail-wrapper .news-detail {
    border: none;
    padding: 0;
}
.news-detail .title {
    padding: 20px 0;
    border-bottom: solid 1px #e6e6e6;
}
.news-detail .title h1 {
    font-size: 26px;
}
.news-detail .title small {
    color: #5e5e5e;
    display: inline-block;
    margin-top: 10px;
}
.news-detail .content {
    margin: 40px 0;
}
/* contact */
.contact-detail-wrapper {
    background-color: #fff;
    min-height: calc(100vh - 540px);
}
.contact-detail-wrapper .contact-detail {
    border: none;
    padding: 0;
}
/* auth-dialog */
.auth-dialog {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.auth-dialog.active {
    display: flex;
}
.auth-dialog .auth-dialog-content {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: 100vh;
    overflow-y: auto;
}
.auth-dialog .auth-dialog-content.active {
    display: block;
}
.auth-dialog .auth-dialog-content .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.auth-dialog .auth-dialog-content .dialog-title {
    display: flex;
    justify-content: space-between;
}
.auth-dialog .auth-dialog-content .dialog-title .close {
    cursor: pointer;
}
.auth-dialog .auth-dialog-content .brand {
    max-width: 400px;
    margin: 0 auto;
}
.auth-dialog .auth-dialog-content .brand .logo {
    max-width: 50%;
    margin: 40px auto;
}
.auth-dialog .auth-dialog-content .brand .logo img {
    max-width: 100%;
}
.auth-dialog .auth-dialog-content .title {
    max-width: 400px;
    margin: 20px auto;
}
.auth-dialog .auth-dialog-content .title h1 {
    font-size: 24px;
}
.auth-dialog .auth-dialog-content .title small {
    font-size: 14px;
}
.auth-dialog .auth-dialog-content .form-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 0;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-item {
    margin: 10px 0;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-item span {
    margin: 10px 0;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-item .form-item-input {
    border: solid 1px #e7e7e7;
    padding: 12px 18px;
    margin: 10px 0;
    border-radius: 6px;
}
.auth-dialog
    .auth-dialog-content
    .form-wrapper
    .form-item
    .form-item-input
    input::placeholder {
    color: #a9a9a9;
}

.auth-dialog
    .auth-dialog-content
    .form-wrapper
    .form-item
    .form-item-input
    input {
    border: none;
    outline: 0;
    font-size: 16px;
    width: 100%;
    line-height: 1em;
}
.auth-dialog
    .auth-dialog-content
    .form-wrapper
    .form-item
    .form-item-input.form-item-input-with-code
    input {
    width: calc(100% - 100px);
}
.auth-dialog
    .auth-dialog-content
    .form-wrapper
    .form-item
    .form-item-input.form-item-input-with-code
    .send-code {
    width: 100px;
    background-color: #4287ff;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    float: right;
    margin-top: -4px;
    text-align: center;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-item .tips {
    display: none;
    color: #f56c6c;
    font-size: 12px;
}
.auth-dialog
    .auth-dialog-content
    .form-wrapper
    .form-item.error
    .form-item-input {
    border: solid 1px #f56c6c;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-item.error span {
    color: #f56c6c;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-item.error .tips {
    display: inline-block;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-links {
    text-align: right;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-actions {
    margin: 40px 0;
}
.auth-dialog .auth-dialog-content .form-wrapper .form-actions a {
    display: inline-block;
    background-color: #4287ff;
    text-align: center;
    padding: 10px;
    width: 100%;
    color: #fff;
    border-radius: 6px;
}
/* message */
.message {
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1001;
}
.message .message-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
}
.message .message-wrapper .message-header {
    text-align: center;
}
.message .message-wrapper .message-content {
    padding: 40px 0;
}
.message .message-wrapper .message-footer {
    text-align: center;
}
.message .message-wrapper .message-footer .close {
    float: none;
    display: inline-block;
    opacity: 1;
}
.message .message-wrapper .message-footer a {
    background: #4287ff;
    border-radius: 4px;
    color: #fff;
    padding: 8px 28px 8px 22px;
    font-size: 14px;
    text-shadow: none;
}

/* profile */
.profile {
    text-align: center;
}
.profile .profile-icon {
    font-size: 96px;
}
.profile h1 {
    font-size: 24px;
}
.profile h2 {
    font-size: 18px;
}
.profile ul {
    margin: 30px 0;
    font-size: 18px;
}
.profile ul li {
    padding: 10px 0;
}
.profile ul li a {
    color: #191919;
}

/* profile-dialog */
.profile-dialog {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.profile-dialog.active {
    display: flex;
}
.profile-dialog .profile-dialog-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: 100vh;
    overflow-y: auto;
}
.profile-dialog .profile-dialog-content .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.profile-dialog .profile-dialog-content .dialog-title {
    display: flex;
    justify-content: space-between;
}
.profile-dialog .profile-dialog-content .dialog-title .close {
    cursor: pointer;
}
.profile-dialog .profile-dialog-content .title {
    max-width: 400px;
    margin: 20px auto;
}
.profile-dialog .profile-dialog-content .title h1 {
    font-size: 24px;
}
.profile-dialog .profile-dialog-content .title small {
    font-size: 14px;
}
.profile-dialog .profile-dialog-content .form-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 0;
}
.profile-dialog .profile-dialog-content .form-wrapper .form-item {
    margin: 10px 0;
}
.profile-dialog .profile-dialog-content .form-wrapper .form-item span {
    margin: 10px 0;
}
.profile-dialog
    .profile-dialog-content
    .form-wrapper
    .form-item
    .form-item-input {
    border: solid 1px #e7e7e7;
    padding: 12px 18px;
    margin: 10px 0;
    border-radius: 6px;
}
.profile-dialog
    .profile-dialog-content
    .form-wrapper
    .form-item
    .form-item-input
    input::placeholder {
    color: #a9a9a9;
}

.profile-dialog
    .profile-dialog-content
    .form-wrapper
    .form-item
    .form-item-input
    input {
    border: none;
    outline: 0;
    font-size: 16px;
    width: 100%;
    line-height: 1em;
}
.profile-dialog
    .profile-dialog-content
    .form-wrapper
    .form-item
    .form-item-input.form-item-input-with-code
    input {
    width: calc(100% - 100px);
}
.profile-dialog
    .profile-dialog-content
    .form-wrapper
    .form-item
    .form-item-input
    textarea {
    width: 100%;
    padding: 12px 18px;
    background: none;
    border: none;
    overflow: hidden;
    resize: none;
    line-height: 1.5em;
    font-size: 16px;
}
.profile-dialog
    .profile-dialog-content
    .form-wrapper
    .form-item
    .form-item-input.form-item-input-with-code
    .send-code {
    width: 100px;
    background-color: #4287ff;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    float: right;
    margin-top: -4px;
    text-align: center;
}
.profile-dialog .profile-dialog-content .form-wrapper .form-item .tips {
    display: none;
    color: #f56c6c;
    font-size: 12px;
}
.profile-dialog
    .profile-dialog-content
    .form-wrapper
    .form-item.error
    .form-item-input {
    border: solid 1px #f56c6c;
}
.profile-dialog .profile-dialog-content .form-wrapper .form-item.error span {
    color: #f56c6c;
}
.profile-dialog .profile-dialog-content .form-wrapper .form-item.error .tips {
    display: inline-block;
}
.profile-dialog .profile-dialog-content .form-wrapper .form-actions {
    margin: 40px 0;
}
.profile-dialog .profile-dialog-content .form-wrapper .form-actions a {
    display: inline-block;
    background-color: #4287ff;
    text-align: center;
    padding: 10px;
    width: 100%;
    color: #fff;
    border-radius: 6px;
    margin: 5px 0;
}
.profile-dialog .profile-dialog-content .form-wrapper table {
    width: 100%;
}
.profile-dialog .profile-dialog-content .form-wrapper table th {
    background-color: #eaeaea;
    padding: 10px;
}
.profile-dialog .profile-dialog-content .form-wrapper table td {
    padding: 10px;
    border-bottom: solid 1px #eaeaea;
}
.profile-dialog .profile-dialog-content .form-wrapper .pagination ul {
    margin: 10px 0;
}
.profile-dialog .profile-dialog-content .form-wrapper .pagination ul li {
    display: inline-block;
    padding: 4px 10px;
    border: solid 1px #eaeaea;
}
.profile-dialog .profile-dialog-content .form-wrapper .pagination ul li.active {
    background-color: #eaeaea;
}
.profile-dialog .profile-dialog-content .form-wrapper .pagination ul li a {
    color: #000;
}
