@charset "UTF-8";
::-webkit-scrollbar {
    width: 4px;
}

html {
    min-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner {
    width: 100%;
    height: 800px;
    background-image: url("../images/1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

header {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 2px solid #93A3B0;
}

nav {
    max-width: 1200px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    flex: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0;
    bottom: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    padding: 28px 0;
    transition: color 0.3s;
    display: block;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #00F6FF;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* 导航菜单激活状态 */
.nav-links li a.active::after {
    width: 100%;
}

/* 联系我们按钮样式 */
.nav-links li:nth-child(4) a {
    background-color: #006DFF;
    padding: 6px 25px;
    border-radius: 50px;
}

.nav-links li:nth-child(4) a::after {
    display: none;
}

.nav-links li:nth-child(4) a:hover {
    background-color: #0077ee;
}

/* about区域样式 */
.about {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.about img {
    width: 100%;
    height: auto;
    display: block;
}

/* product区域样式 */
.product {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    position: relative;
}

.product-left {
    width: 70%;
    position: relative;
}

.product-left img {
    width: 100%;
    height: auto;
    display: block;
}

.product-left .map-animation {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 180px;
    z-index: 3;
    opacity: 0.5;
}

.product-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.product-right img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.product-list {
    width: 100%;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.product-list .product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-list .product-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.product-list .product-item .product-title {
    color: #333;
    font-size: 12px;
    transition: all 0.3s ease;
}

.product-list .product-item.active {
    background-color: #006DFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    width: calc(100% + 80px);
    left: -80px;
}

.product-list .product-item.active .product-title {
    color: #fff;
    font-size: 16px;
    padding-left: 10px;
    font-weight: bold;
}

.product-list .product-item.active img {
    width: 60px;
    height: 60px;
}

.product-list .product-item:hover:not(.active) {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

/* product-icon样式 */
.product-icon {
    width: 1200px;
    margin: 80px auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon img {
    width: auto;
    height: auto;
    text-align: center;
    display: block;
}

.product-detail {
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.product-detail-one {
    margin: 0 auto;
}

.product-detail-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-detail-title h2 {
    font-size: 36px;
    color: #333;
    position: relative;
    padding-top: 20px;
}

.product-detail-title h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #006DFF;
}

.product-detail-title p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    padding-bottom: 60px;
}

.product-detail-zucheng {
    width: 1200px;
    margin: 0 auto;
}

.product-detail-zucheng img {
    width: 1200px;
    height: auto;
    display: block;
}

.product-detail-content {
    max-width: 1200px;
    margin: 10px auto;
    display: flex;
    text-align: left;
}

.product-detail-content > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-detail-content > div:first-child {
    background-color: #F6F6F6;
}

.product-detail-content > div:last-child {
    background-color: #fff;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.product-detail-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.product-detail-content ul {
    list-style: none;
}

.product-detail-content ul li {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.product-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

.product-detail-content ul li strong {
    font-weight: bold;
}

.product-detail-content img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: auto;
}

.control-box {
    background-color: #006DFF;
    padding: 30px;
    margin-bottom: 10px;
    flex: 4;
}

.control-box h3,
.control-box ul li,
.control-box ul li::before,
.control-box ul li strong {
    color: #fff;
}

.execution-interaction {
    display: flex;
    gap: 10px;
    margin-top: 0;
    flex: 6;
    flex-direction: column;
}

.execution-interaction > div {
    flex: 1;
    background-color: #F6F6F6;
    padding: 30px;
    display: flex;
    align-items: center;
}

.execution-interaction img {
    width: 170px;
    margin-right: 40px;
}

.execution-interaction h3 {
    color: #333;
    margin-bottom: 20px;
}

.execution-interaction ul li,
.execution-interaction ul li::before,
.execution-interaction ul li strong {
    color: #333;
}

/* 系统组成样式 */
.product-detail-system-zucheng {
    width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.system-title {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-title::before,
.system-title::after {
    content: "";
    height: 4px;
    width: 40px;
    background-color: #333;
    margin: 0 20px;
}

.system-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.system-item {
    width: calc(25% - 15px);
    border: 1px dashed #888888;
    border-radius: 20px;
    padding: 30px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.system-item-2 {
    width: calc(20% - 16px);
    border: 1px dashed #888888;
    border-radius: 20px;
    padding: 30px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.system-item:hover,
.system-item-2:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.system-item img,
.system-item-2 img {
    /* width: 60px; */
    height: 60px;
    margin: 0 auto 20px;
}

.system-item h3,
.system-item-2 h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.system-item p,
.system-item-2 p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}

.system-item .line,
.system-item-2 .line {
    width: 100px;
    height: 10px;
    border-bottom: 1px dashed #888888;
    margin: 0px auto;
    margin-bottom: 20px;
}

/* 系统优势样式 */
.product-detail-system-advantage {
    width: 100%;
    background-color: #006DFF;
    margin-top: 80px;
    color: #fff;
}

.product-detail-system-advantage .container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #006DFF;
}

.product-detail-system-advantage .content {
    flex: 1;
    padding-right: 50px;
    text-align: left;
}

.product-detail-system-advantage .image {
    flex: 1;
}

.product-detail-system-advantage .image img {
    width: 100%;
    height: auto;
    display: block;
}

.advantage-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.advantage-list {
    list-style: none;
}

.advantage-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.advantage-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

/* 应用场景样式 */
.product-detail-app-scene {
    width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.app-scene-title {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-scene-title::before,
.app-scene-title::after {
    content: "";
    height: 4px;
    width: 40px;
    background-color: #333;
    margin: 0 20px;
}

.app-scene-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-scene-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.app-scene-item img {
    width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.app-scene-item .overlay {
    display: none;
}

/* 联系我们样式 */
.contact-us {
    width: 100%;
    margin: 80px 0;
    text-align: center;
}

.contact-title {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 60px;
}

.contact-decoration {
    width: 40px;
    height: 6px;
    background-color: #006DFF;
    margin: 0 auto 20px;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
}

.contact-item {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px dashed #545454;
    border-radius: 10px;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-item::after {
    display: none;
}

.contact-item img {
    /* width: 24px; */
    height: 24px;
    margin-right: 15px;
    margin-bottom: 0;
}

.contact-item p {
    font-size: 16px;
    color: #545454;
    font-weight: bold;
    text-align: left;
}

.contact-map {
    width: 100%;
    /* height: 400px; */
    margin: 0 auto;
}

.contact-map img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 页脚样式 */
.footer {
    margin: 40px auto;
    padding-left: 100px;
    text-align: left;
    color: #545454;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
}

/* 合作伙伴样式 */
.partner {
    width: 100%;
    background-color: #F6F6F6;
    padding-top: 80px;
    text-align: center;
}

.partner-title {
    text-align: center;
    margin-bottom: 60px;
}

.partner-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.partner-title .decoration {
    width: 60px;
    height: 4px;
    background-color: #006DFF;
    margin: 0 auto 20px;
}

.partner-title p {
    font-size: 24px;
    color: #666;
    margin-bottom: 0;
}

.partner-items {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.partner-item {
    flex: 1;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.partner-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 回到顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top img {
    width: 30px;
    height: 30px;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blue {
    color: #006DFF;
}

.shiyitu {
    margin: 100px -20px 0;
    position: relative;
}

.shiyitu .bg {
    display: block;
    width: 100%;
}

.shiyitu h2 {
    position: absolute;
    left: 80px;
    top: 80px;
    color: #fff;
}

.shiyitu .img {
    display: block;
    width: 60vw;
    position: absolute;
    left: 60px;
    bottom: -160px;
}

.shiyitu .shuoming {
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: 80px;
    bottom: 200px;
    text-align: left;
}

.shiyitu .shuoming li {
    margin-bottom: 20px;
    width: 380px;
}

.shiyitu .shuoming span {
    font-weight: bold;
}

.warning-model {
    display: flex;
    gap: 40px;
    margin-top: 100px;
}

.warning-model .warning-nav .item {
    height: 84px;
    line-height: 84px;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
    font-size: 22px;
    color: rgb(84, 84, 84);
    cursor: pointer;
}

.warning-model .warning-nav {
    border-right: 1px dashed rgb(84, 84, 84);
    padding-right: 40px;
}

.warning-model .warning-nav .item.active {
    color: #000;
    position: relative;
    padding-left: 60px;
}

.warning-model .warning-nav .item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 24px;
    background-color: #006DFF;
}

.warning-model .warning-nav .item.active::after {
    content: "";
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid #006DFF;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.warning-detail {
    flex: 1;
}

.warning-detail .imgs {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-left: -10px;
    gap: 20px;
}

.warning-detail .imgs img {
    display: block;
    width: 305px;
    -o-object-fit: cover;
    object-fit: cover;
}

.xuqiu img {
    display: block;
    width: 100%;
}

.ar img {
    display: block;
    width: 100%;
    margin-top: 100px;
}

.right-title::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background-color: #006DFF;
    margin-bottom: 20px;
}

.right-title h2 {
    font-weight: 100;
    margin-bottom: 40px;
}

.hint {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: #404040;
    font-size: 20px;
}

.swiper {
    max-width: 1400px;
    padding-right: 10px;
    margin-top: 100px;
    padding-bottom: 60px;
}

.swiper-slide img {
    width: 100%;
    display: block;
    box-shadow: 20px 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-us {
    position: relative;
}

.contact-detail {
    position: absolute;
    left: 30%;
    top: 50%;
    text-align: left;
    transform: translateX(-50%) translateY(-50%);
}

.contact-map {
    width: 100%;
}

.contact-info {
    flex-direction: column;
    gap: 32px;
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background-color: #006DFF;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.logo img {
    display: block;
    height: 60px;
}

.tel {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.tel img {
    display: block;
    width: 20px;
}

.right-tool {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 12px;
    box-shadow: -10px 20px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.right-tool .tool {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
}

.right-tool .tool > img {
    display: none;
    width: 44px;
}

.right-tool .tool.active {
    color: #fff;
    background-color: #006dff;
}

.right-tool .tool.active .active {
    display: block;
}

.right-tool .tool:not(.active) .normal {
    display: block;
}

.dialog {
    background-color: #006dff;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: none;
    position: absolute;
    left: -10px;
    top: 0;
    transform: translateX(-100%);
}

::-moz-placeholder {
    color: #a6a6a6;
}

::placeholder {
    color: #a6a6a6;
}

.form-dialog .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-dialog .form-img {
    display: block;
    width: 400px;
    margin-left: 56px;
}

.form-dialog form {
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 72px 72px;
}

.form-dialog .input,
.form-dialog .flex-input {
    border-bottom: 1px solid #a6a6a6;
    width: 424px;
    height: 48px;
    padding-left: 40px;
    position: relative;
}

.form-dialog .input input,
.form-dialog .flex-input input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
}

.form-dialog .input::before,
.form-dialog .flex-input::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url("../images/82.png") no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form-dialog .input-hint {
    color: #a6a6a6;
    margin: 0 10px;
    line-height: 1;
}

.form-dialog .flex-input {
    display: flex;
    align-items: center;
}

.form-dialog .flex-input input {
    width: 10%;
}

.form-dialog .input input {
    width: 100%;
    height: 100%;
}

.form-dialog .radio {
    display: flex;
    gap: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form-dialog .radio label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.form-dialog .radio input[type=radio] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-dialog .radio span {
    color: #333;
}

.form-dialog .statement {
    padding: 20px 0;
    color: #006dff;
}

.form-dialog .image-code {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006dff;
    font-size: 12px;
    gap: 10px;
}

.form-dialog .image-code img {
    height: 40px;
    display: block;
}

.form-dialog .submit {
    padding: 20px 0;
}

.form-dialog .submit button {
    width: 148px;
    background-color: #006dff;
}

.top-10 {
    top: 10%;
    z-index: 999;
}

/*# sourceMappingURL=index.css.map */
.footer {
    display: flex;
    align-content: center;
    justify-content: space-between;
}
.beian {
    font-size: 24px;
    background-color: #fff;
    padding: 0 24px;

}

.beian a {
    color: #545454;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;

}

.beian a img {
    width: 24px;
    display: block;
}