﻿/* 重置浏览器默认样式 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box; /* 确保padding不会导致元素尺寸增加 */
}
/* HTML5 元素定义 */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
::-webkit-scrollbar {
    width: 2px; /* 滚动条宽度 */
}

.sm-head {
    display: none;
}

.md-head {
    display: block;
    margin: auto;
    width: 1568px;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sm-menu {
    display: none;
}

.sm-lang-icon {
    display: none;
}

.md-head .logo {
    width: 200.72px;
    height: 40px;
}

.md-head .menu {
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.md-head .menu .item {
    position: relative;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #565656;
}

.md-head .menu .item .decorate {
    position: absolute;
    top: 0;
    right: 15px;
    width: 6px;
    height: 6px;
    background-color: #308CF7;
    border-radius: 6px;
    display: none;
}

.md-head .menu .item a {
    color: #565656;
    text-decoration: none;
}

.md-head .menu .item:hover a {
    font-weight: 600;
    color: #000000;
}

.md-head .menu .item-active {
    font-weight: 600;
    color: #000000;
}

.md-head .menu .item-active .decorate {
    display: block;
}

.md-head .function {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.md-head .function .language {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.md-head .function .lang-icon {
    width: 40px;
    display: flex;
}

.md-head .function .lang-icon img {
    width: 40px;
    height: 40px;
}

.md-head .function .lang-text {
    position: relative;
    font-size: 16px;
    color: #000000;
}

.md-head .function .language-ul {
    position: absolute;
    top: 28px;
    left: -36px;
    padding: 8px;
    width: 132px;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.2);
    display: none;
}

.md-head .function .language-ul .li {
    margin-bottom: 6px;
    padding-left: 16px;
    width: 112px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #6B6B6B;
    border-radius: 16px;
    cursor: pointer;
}

.md-head .function .language-ul .li:hover {
    background-color: #F3F5F9;
}

.md-head .function .language-ul .li-active {
    color: #177FF9;
}

.md-head .function .btn-down {
    margin-left: 46px;
    min-width: 136px;
    padding: 0 8px;
    height: 40px;
    background-color: #177FF9;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    font-size: 16px;
    line-height: 22px;
    color: #fff;
    text-decoration: none;
}

.md-head .function .btn-down:hover {
    background-color: #3894FF;
}

.md-head .function .btn-down:active {
    background-color: #056FEB;
}

.md-head .function .btn-down .btn-down-icon {
    width: 22px;
    margin-right: 4px;
}

.md-head .function .btn-down .btn-down-icon svg{
    width: 22px;
}

.md-head .function .btn-down .btn-down-text{
    padding-left: 8px;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.ad-show {
    margin: auto;
    padding-top: 72px;
    width: 1568px;
}

.ad-show .ad-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-show .ad-info .ad-title {
    line-height: 86px;
    font-size: 30px;
    font-weight: 600;
    color: #000000;
}

.ad-show .ad-info .ad-describe {
    max-width: 1040px;
    padding-top: 16px;
    text-align: center;
    line-height: 32px;
    font-size: 20px;
    color: #565656;
    white-space: pre-line;
}

.ad-show .ad-info .operate {
    padding-top: 26px;
}

.ad-show .ad-info .operate .btn-down {
    margin-left: 46px;
    width: 336px;
    height: 80px;
    background-color: #177FF9;
    border-radius: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    font-size: 32px;
    color: #ffffff;
    text-decoration: none;
}

.ad-show .ad-info .operate .btn-down:hover {
    background-color: #3894FF;
}

.ad-show .ad-info .operate .btn-down:active {
    background-color: #056FEB;
}

.ad-show .ad-info .operate .btn-down-icon {
    margin-right: 4px;
    width: 44px;
    height: 44px;
}

.ad-show .ad-info .operate .btn-down-icon svg {
    width: 44px;
    height: 44px;
}

.ad-banner {
    display: flex;
    justify-content: space-between;
    margin: 32px auto 0 auto;
    padding: 32px 120px;
    height: 664px;
    background-color: #F3F5F9;
}

.ad-banner .banner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1568px;
    margin: 0 auto;
}

.ad-banner #banner-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
}

.ad-banner #banner-items .item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ad-banner #banner-items .item svg {
    margin-right:6px;
}

.ad-banner .banner-content {
    width: 629px;
    margin-right: 20px;
}

.ad-banner .banner-content .desc {
    margin: 16px 0 32px 0;
    font-weight: 400;
    font-size: 16px;
    color: #565656;
    line-height: 32px;
}

.ad-banner .banner-content p {
    font-size: 44px;
    line-height: 45px;
    font-weight: 500;
    color: #000000;
}

.ad-banner img {
    width: 882px;
    height: 606px;
}

.lightspot {
    margin: auto;
    width: 1568px;
}

.lightspot .lightspot-menu {
    display: flex;
    position: absolute;
    top: 1214px;
    right: 88px;
    padding: 14px 0 8px 0;
    width: 176px;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}


.lightspot .lightspot-menu-fixed {
    position: fixed;
    top: 100px;
}

.lightspot .lightspot-menu .menu-li {
    margin-bottom: 5px;
    width: 160px;
    height: 50px;
    font-size: 18px;
    color: #6B6B6B;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.lightspot .lightspot-menu .menu-li a {
    padding: 0 8px;
    width: 160px;
    height: 50px;
    color: #6B6B6B;
    text-decoration: none;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.lightspot .lightspot-menu .menu-li a:hover {
    background-color: #F3F5F9;
}

.lightspot .lightspot-menu .menu-li-active a {
    font-weight: 400;
    color: #177FF9;
    background-color: rgba(23,127,249, 0.1);
}


.lightspot .lightspot-menu .menu-li .li-icon {
    width: 24px;
    height: 24px;
    display: flex;
}


.lightspot .lightspot-menu .menu-li .li-icon img {
    width: 24px;
    height: 24px;
}

.lightspot .lightspot-menu .menu-li .li-text {
    padding-left: 8px;
}
.lightspot .list {
    width: 1568px;
}

.lightspot .list .item {
    padding-top: 168px;
    width: 1568px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.lightspot .list .item .item-img {
    position: relative;
    width: 880px;
    height: 608px;
    display: flex;
}

.lightspot .list .item .item-img img {
    width: 880px;
    height: 608px;
}

.lightspot .list .item .item-img video {
    display: none;
    width: 880px;
    height: 608px;
}

.lightspot .list .item .item-img .item-more {
    position: absolute;
    right: 56px;
    bottom: 82px;
    width: 152px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightspot .list .item .item-img .item-more .more-text {
    padding-right: 8px;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
}

.lightspot .list .item .item-img .item-more .more-text a {
    color: #FFFFFF;
    text-decoration: none;
}

.lightspot .list .item .item-img .item-more .more-text a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.lightspot .list .item .item-img .item-more .more-icon {
    width: 20px;
    display: flex;
}

.lightspot .list .item .item-img .item-more .more-icon img {
    width: 20px;
    height: 20px;
}

.lightspot .list .item .item-info {
    padding: 120px 56px 0 56px;
}

.lightspot .list .item .item-info .item-title {
    line-height: 62px;
    font-size: 44px;
    font-weight: 600;
    color: #000000;
}

.lightspot .list .item .item-info .item-describe {
    line-height: 24px;
    font-size: 16px;
    white-space: pre-line;
    color: #565656;
}

.more-function {
    margin: 72px auto 94px auto;
    width: 1568px;
    height: 580px;
    background-color: #191919;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.more-function .title {
    padding-top: 96px;
    line-height: 70px;
    font-size: 50px;
    font-weight: 600;
    color: #FFFFFF;
}

.more-function .function-group {
    box-sizing: content-box;
    padding: 56px 65px 0 65px;
    width: 1438px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.more-function .function-group .item {
    width: 442px;
    height: 238px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.more-function .function-group .item .item-icon {
    width: 56px;
    height: 56px;
    display: flex;
}

.more-function .function-group .item .item-icon img {
    width: 56px;
    height: 56px;
}

.more-function .function-group .item .item-title {
    padding-top: 16px;
    line-height: 45px;
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
}

.more-function .function-group .item .item-describe {
    padding-top: 9px;
    height: 105px;
    line-height: 24px;
    font-size: 16px;
    color: #FFFFFF;
}

.more-function .function-group .item .item-operate {
    width: 442px;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.more-function .function-group .item .item-operate:hover .operate-text{
    color: #49A2FF;
}

.more-function .function-group .item .item-operate .operate-text {
    line-height: 24px;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: underline;
}

.more-function .function-group .item .item-operate .operate-text:hover {
    color: #49A2FF;
}

.more-function .function-group .item .item-operate .operate-more {
    width: 20px;
    height: 20px;
    display: flex;
}

.more-function .function-group .item .item-operate .operate-more img {
    width: 20px;
    height: 20px;
}

.more-function .function-group .item .item-operate:hover .operate-text a {
    color: #49A2FF;
}

.more-function .function-group .item .item-operate:hover .fill-hover{
    fill: #49A2FF;
}


.customer-evaluation-box {
    height: 627px;
    background-color: #F3F5F9;
}

.customer-evaluation {
    margin: auto;
    width: 1568px;
    height: 627px;
    background-color: #F3F5F9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customer-evaluation .title {
    padding-top: 72px;
    line-height: 70px;
    font-size: 50px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.customer-evaluation .describe {
    padding-top: 16px;
    line-height: 24px;
    font-size: 16px;
    color: #565656;
    text-align: center;
}

.customer-evaluation .customers {
    padding-top: 41px;
    width: 1568px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.customer-evaluation .customers .item {
    box-sizing: border-box;
    width: 356px;
    height: 332px;
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.customer-evaluation .customers .item .item-outline {
    padding: 32px 32px 26px 32px;
    width: 356px;
    height: 332px;
    border-radius: 16px;
}

.customer-evaluation .customers .item:hover {
    box-shadow: 4px 12px 26px 0px rgba(0, 0, 0, 0.25);
}

.customer-evaluation .customers .item:hover .item-outline {
    width: 356px;
    height: 332px;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.2);
}

.customer-evaluation .customers .item .stars {
    height: 24px;
    display: flex;
    flex-direction: row;
}

.customer-evaluation .customers .item .stars .star {
    padding-right: 2px;
    width: 24px;
    height: 24px;
    display: flex;
}

.customer-evaluation .customers .item .stars .star img {
    width: 24px;
    height: 24px;
}

.customer-evaluation .customers .item .evaluation {
    padding-top: 18px;
    line-height: 24px;
    font-size: 16px;
    color: #565656;
    height: 194px;
}

.customer-evaluation .customers .item .item-boot {
    height: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.customer-evaluation .customers .item .item-boot .user-info {
    height: 32px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.customer-evaluation .customers .item .item-boot .user-info .user-img {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.customer-evaluation .customers .item .item-boot .user-info .user-img img {
    width: 32px;
    height: 32px;
}

.customer-evaluation .customers .item .item-boot .user-info .user-name {
    padding-left: 7px;
    line-height: 20px;
    font-size: 14px;
    color: #565656;
}

.customer-evaluation .customers .item .item-boot .use-time {
    line-height: 20px;
    font-size: 14px;
    color: #A4A4A4;
}

.invite-box-placeholder {
    margin-bottom: 32px;
    height: 160px;
}

.invite-box {
    width: 100%;
    height: 160px;
    background-color: #177FF9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.invite-box-float {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
}

.invite {
    width: 1344px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.invite .invite-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.invite .invite-left .invite-info {
    min-width: 618px;
    display: flex;
    flex-direction: column;
}

.invite .invite-left .invite-info .title {
    line-height: 56px;
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
}

.invite .invite-left .invite-info .contact {
    padding-top: 10px;
    line-height: 24px;
    font-size: 16px;
    color: #FFFFFF;
}

.invite .invite-left .btn-down {
    height: 72px;
    padding-left: 36px;
    width: 280px;
    padding: 0 6px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    line-height: 72px;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    background-color: #ffffff;
    border-radius: 36px;
    color: #000000;
}


.invite .invite-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.invite .invite-right .service-tips {
    padding: 46px 28px 0 10px;
    line-height: 24px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

.invite .invite-right .service-qrcode {
    width: 104px;
    height: 104px;
    display: flex;
}

.invite .invite-right .service-qrcode img {
    width: 104px;
    height: 104px;
}
.floor-bg {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 32px;
    background-color: #E4E4E4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.floor-box {
    margin: auto;
    width: 100%;
    min-height: 32px;
    line-height: 32px;
    font-size: 12px;
    color: #767676;
    background-color: #E4E4E4;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.floor-box a {
    color: #767676;
    text-decoration: none;
}

.floor-box a:hover {
    color: #767676;
    text-decoration: underline;
}

.floor-box .agreement {
    padding-right: 6px;
}

.floor-box .copyright .integrated {
    display: none;
}

.floor-box .copyright {
    padding-right: 6px;
}

.floor-box .partner {
    padding-right: 6px;
}

.floor-box .a {
    cursor: pointer;
}

.levitate-service {
    display: none;
}
