﻿

:root {
    --vt-c-white: #ffffff;
    --vt-c-white-soft: #f8f8f8;
    --vt-c-white-mute: #f2f2f2;
    --vt-c-black: #181818;
    --vt-c-black-soft: #222222;
    --vt-c-black-mute: #282828;
    --vt-c-indigo: #2c3e50;
    --vt-c-divider-light-1: rgba(60, 60, 60, .29);
    --vt-c-divider-light-2: rgba(60, 60, 60, .12);
    --vt-c-divider-dark-1: rgba(84, 84, 84, .65);
    --vt-c-divider-dark-2: rgba(84, 84, 84, .48);
    --vt-c-text-light-1: var(--vt-c-indigo);
    --vt-c-text-light-2: rgba(60, 60, 60, .66);
    --vt-c-text-dark-1: var(--vt-c-white);
    --vt-c-text-dark-2: rgba(235, 235, 235, .64)
}

:root {
    --color-background: var(--vt-c-white);
    --color-background-soft: var(--vt-c-white-soft);
    --color-background-mute: var(--vt-c-white-mute);
    --color-border: var(--vt-c-divider-light-2);
    --color-border-hover: var(--vt-c-divider-light-1);
    --color-heading: var(--vt-c-text-light-1);
    --color-text: var(--vt-c-text-light-1);
    --section-gap: 160px
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-background: var(--vt-c-black);
        --color-background-soft: var(--vt-c-black-soft);
        --color-background-mute: var(--vt-c-black-mute);
        --color-border: var(--vt-c-divider-dark-2);
        --color-border-hover: var(--vt-c-divider-dark-1);
        --color-heading: var(--vt-c-text-dark-1);
        --color-text: var(--vt-c-text-dark-2)
    }
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    font-weight: 400
}

html {
    height: 100vh
}

body {
    min-height: 100vh;
    color: var(--color-text);
    background: var(--color-background);
    transition: color .5s, background-color .5s;
    line-height: 1.6;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 15px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

* {
    margin: 0;
    padding: 0
}

#app {
    background-color: #fff
}

.loading {
    color: #000;
    height: 100vh;
    background-color: #fff
}

.footer-container {
    margin-bottom: 20px;
    color: #666;
    font-size: 12px;
    text-align: center
}

.searchArea {
    padding-right: 24px;
    flex: 1;
    text-align: right;
    position: relative
}

.searchArea input {
    outline: 0;
    line-height: 1.15;
    margin: 0;
    width: 215px;
    height: 36px;
    background: #f3f3f3;
    border-radius: 2px 0 0 2px;
    border: 0;
    position: relative;
    left: 5px;
    font-size: 14px;
    padding-left: 12px
}

.searchArea input::placeholder {
    color: #999
}

.searchArea button {
    background-color: #1ab956;
    border: 0;
    color: #fff;
    width: 65px;
    height: 36px;
    border-radius: 0 2px 2px 0;
    position: relative;
    cursor: pointer;
    transition: all .35s
}

.searchArea button:hover {
    background-color: #47c777
}

.searchArea .suggest {
    text-align: left;
    display: none;
    width: 280px;
    position: absolute;
    top: 58px;
    right: 20px;
    background: #ffffff;
    box-shadow: 0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017;
    border-radius: 2px
}

.searchArea .suggest>p {
    line-height: normal;
    font-size: 12px;
    padding: 12px 12px 0
}

.searchArea .suggest>p img {
    margin-right: 6px;
    width: 12px;
    position: relative;
    top: 2px
}

.searchArea .suggest>p:last-of-type {
    padding-top: 0
}

.searchArea .suggest .suggestList {
    padding: 0 12px;
    font-size: 0;
    margin-top: 8px;
    line-height: normal
}

.searchArea .suggest .suggestList a {
    display: inline-block;
    width: 50%
}

.searchArea .suggest .suggestList a li {
    display: inline-block;
    margin-bottom: 12px;
    cursor: pointer
}

.searchArea .suggest .suggestList a li img {
    width: 32px;
    margin-right: 6px
}

.searchArea .suggest .suggestList a li div {
    display: inline-block
}

.searchArea .suggest .suggestList a li div h1 {
    margin: 0;
    font-size: 12px;
    color: #333;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .35s;
    width: 80px
}

.searchArea .suggest .suggestList a li div p {
    margin-top: 4px;
    font-size: 12px;
    color: #999
}

.searchArea .suggest .suggestList li:hover h1 {
    color: #1ab956
}

.searchArea .suggest .tagList {
    padding: 0 12px 12px;
    font-size: 0;
    line-height: normal
}

.searchArea .suggest .tagList a {
    display: inline-block
}

.searchArea .suggest .tagList a li {
    cursor: pointer;
    display: inline-block;
    padding: 2px 12px;
    background: #f3f3f3;
    border-radius: 12px;
    height: 24px;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin-top: 10px;
    margin-right: 8px;
    transition: all .35s
}

.searchArea .suggest .tagList a li:hover {
    background: rgba(26, 185, 86, .1);
    color: #1ab956
}

.searchArea .searchList {
    text-align: left;
    display: none;
    width: 280px;
    position: absolute;
    top: 58px;
    right: 20px;
    background: #ffffff;
    box-shadow: 0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017;
    border-radius: 2px;
    line-height: normal
}

.searchArea .searchList>a {
    display: block;
    font-size: 14px;
    color: #333;
    transition: all .35s;
    height: 44px;
    line-height: 36px;
    border-bottom: 1px solid #E6E6E6;
    padding: 8px 12px 0;
    text-decoration: none
}

.searchArea .searchList>a:hover {
    color: #1ab956
}

.searchArea .searchList ul {
    width: 100%
}

.searchArea .searchList ul a {
    display: block;
    text-decoration: none
}

.searchArea .searchList ul a li {
    cursor: pointer;
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #333;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .35s
}

.searchArea .searchList ul a li:hover {
    background: rgba(26, 185, 86, .1);
    color: #1ab956
}

.header[data-v-7fad1420] {
    min-width: 375px;
    box-sizing: content-box;
    height: 72px;
    opacity: 1;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 210px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10000
}

.header .title[data-v-7fad1420] {
    display: flex;
    align-items: center
}

.header .title img[data-v-7fad1420] {
    width: 160px;
    height: 40px;
    margin-right: 12px
}

.header .title h1[data-v-7fad1420] {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 24px;
    color: #1d2129;
    text-align: left;
    vertical-align: middle
}

.header .download[data-v-7fad1420] {
    min-width: 80px;
    height: 40px;
    opacity: 1;
    border-radius: 10px;
    background: rgb(0, 123, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: #fff
}

.header-noscoped {
    min-width: 375px;
    box-sizing: content-box;
    height: 72px;
    opacity: 1;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10000
}

.header-noscoped .title {
    display: flex;
    align-items: center
}

.header-noscoped .title img {
    width: 32px;
    height: 32px;
    margin-right: 12px
}

.header-noscoped .title h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 24px;
    color: #1d2129;
    text-align: left;
    vertical-align: middle
}

.header-noscoped .download {
    min-width: 80px;
    height: 40px;
    opacity: 1;
    border-radius: 10px;
    background: rgb(0, 123, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: #fff
}

.page-banner[data-v-8be7951d] {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    margin-bottom: 60px;
    display: flex;
    padding: 90px 0;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.banner-text[data-v-8be7951d] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.banner-img>img[data-v-8be7951d] {
    width: 520px;
    height: 320px
}

.banner-title[data-v-8be7951d] {
    width: 420px;
    opacity: 1;
    display: flex;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 66px;
    color: #1d2129;
    text-align: left;
    vertical-align: top
}

.banner-desc[data-v-8be7951d] {
    width: 420px;
    height: 48px;
    opacity: 1;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333;
    text-align: left;
    vertical-align: top
}

.banner-btn[data-v-8be7951d] {
    width: 320px;
    height: 56px;
    border-radius: 8px;
    background: rgb(0, 123, 255);
    justify-content: center;
    align-items: center;
    padding: 0 120px;
    opacity: 1;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 56px;
    color: #fff;
    text-align: left;
    vertical-align: top;
    text-decoration: none
}

.banner-ver[data-v-8be7951d] {
    width: 420px;
    height: 24px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: #999;
    text-align: left;
    vertical-align: top
}

.banner-Carousel[data-v-8be7951d] {
    position: relative;
    display: inline-block;
    min-width: 1280px;
    white-space: nowrap
}

.banner-Carousel>img[data-v-8be7951d] {
    vertical-align: middle;
    border-radius: 16px;
    object-fit: cover
}

.banner-Carousel>img[data-v-8be7951d]:not(:first-child) {
    margin-left: 16px
}

.banner-Carousel-pre[data-v-8be7951d] {
    cursor: default;
    display: inline-block;
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .8) url(../image/t11098f6bcd358af36a07ace35d.png) no-repeat center center;
    top: 122px;
    left: 26px
}

.banner-Carousel-next[data-v-8be7951d] {
    cursor: default;
    display: inline-block;
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .8) url(../image/t11098f6bcdf6333b31ad51a1a2.png) no-repeat center center;
    top: 122px;
    right: 10px
}

.Carousel-select[data-v-8be7951d] {
    margin-top: 16px
}

.page-banner[data-v-24f7ad3c] {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 60px;
    display: flex;
    padding: 90px 0;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.page-banner a[data-v-24f7ad3c] {
    color: unset;
    text-decoration: none
}

.normal-btn[data-v-24f7ad3c] {
    transition: all .5s
}

.normal-btn[data-v-24f7ad3c]:hover {
    color: #fff;
    background: #15CA71;
    border: none !important
}

.banner-content[data-v-24f7ad3c] {
    position: absolute;
    bottom: 32px;
    align-items: center;
    width: 1200px;
    height: 300px;
    background: rgba(255, 255, 255, .8);
    box-sizing: border-box;
    border: 1px solid #FFFFFF;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0 48px
}

.banner-content-copy[data-v-24f7ad3c] {
    width: 250px;
    height: 186px;
    position: absolute;
    top: -100px;
    font-size: 24px;
    color: #79796a
}

.banner-content-copy>img[data-v-24f7ad3c] {
    margin-top: 16px
}

.banner-content-top[data-v-24f7ad3c] {
    width: 100%;
    padding-bottom: 4px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .07)
}

.banner-content-top .alert[data-v-24f7ad3c] {
    position: absolute;
    left: -116px;
    bottom: 69px;
    width: 232px;
    height: 160px;
    border-radius: 8px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #15CA71;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 16px;
    align-items: center
}

.banner-content-bottom[data-v-24f7ad3c] {
    width: 100%;
    height: 99px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 15px;
    font-size: 12px
}

.banner-text[data-v-24f7ad3c] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.banner-img>img[data-v-24f7ad3c] {
    width: 520px;
    height: 320px
}

.banner-title[data-v-24f7ad3c] {
    width: 420px;
    opacity: 1;
    display: flex;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 66px;
    color: #1d2129;
    text-align: left;
    vertical-align: top
}

.banner-desc[data-v-24f7ad3c] {
    width: 420px;
    height: 48px;
    opacity: 1;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333;
    text-align: left;
    vertical-align: top
}

.banner-btn[data-v-24f7ad3c] {
    width: 320px;
    height: 56px;
    border-radius: 8px;
    background: rgb(0, 123, 255);
    justify-content: center;
    align-items: center;
    padding: 0 120px;
    opacity: 1;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 56px;
    color: #fff;
    text-align: left;
    vertical-align: top;
    text-decoration: none
}

.banner-ver[data-v-24f7ad3c] {
    width: 420px;
    height: 24px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: #999;
    text-align: left;
    vertical-align: top
}

.step[data-v-3681df5d] {
    margin-bottom: 66px
}

.step-list[data-v-3681df5d] {
    display: flex;
    justify-content: space-around;
    width: 1000px;
    height: 152px;
    margin: auto;
    align-items: center;
    text-align: center
}

.step[data-v-b2520a26] {
    margin-bottom: 66px
}

.step-list[data-v-b2520a26] {
    position: relative;
    display: flex;
    justify-content: space-around;
    width: 1200px;
    height: 152px;
    margin: 48px auto auto;
    align-items: flex-start;
    text-align: center
}

.introduction[data-v-fd0799a5] {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 66px
}

.introduction img[data-v-fd0799a5] {
    object-fit: fill;
    margin-left: 6px;
    margin-right: 6px
}

.introduction-list[data-v-fd0799a5] {
    overflow: hidden;
    width: 100%
}

.introduction-list img[data-v-fd0799a5] {
    flex: 0
}

.introduction[data-v-38e88671] {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 66px;
    max-width: 1200px;
    color: #111
}

.introduction img[data-v-38e88671] {
    object-fit: fill;
    margin-left: 6px;
    margin-right: 6px
}

.introduction-list[data-v-38e88671] {
    overflow: hidden;
    width: 100%;
    padding-top: 24px;
    padding-left: 10px;
    line-height: 24px
}

.ability[data-v-1c80839c] {
    margin-bottom: 66px
}

.ability-content[data-v-1c80839c] {
    display: flex;
    justify-content: space-around;
    width: 1000px;
    height: 184px;
    margin: auto;
    align-items: center;
    background-color: #f0f6fc;
    padding: 32px
}

.ability-list[data-v-1c80839c] {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    margin: auto;
    align-items: center;
    flex-wrap: wrap
}

.ability-star[data-v-1c80839c] {
    flex: 0 0 50%;
    padding-left: 216px
}

.ability-star-download[data-v-1c80839c] {
    text-decoration: none;
    width: 200px;
    height: 44px;
    opacity: 1;
    border-radius: 8px;
    background: rgb(0, 123, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    color: #fff
}

.ability[data-v-d1d35af3] {
    margin-bottom: 66px
}

.ability-content[data-v-d1d35af3] {
    display: flex;
    justify-content: space-around;
    width: 1200px;
    height: 112px;
    margin: auto;
    align-items: center;
    background-color: #f0f6fc;
    padding: 32px
}

.ability-list[data-v-d1d35af3] {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    margin: auto;
    align-items: center;
    flex-wrap: wrap
}

.wallpaper[data-v-6657129c] {
    text-align: center;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 66px
}

.wallpaper img[data-v-6657129c] {
    object-fit: fill
}

.wallpaper-list[data-v-6657129c] {
    overflow: hidden;
    width: 100%;
    min-width: 1280px
}

.wallpaper-list img[data-v-6657129c] {
    flex: 0;
    border-radius: 16px
}

.wallpaper-btn[data-v-6657129c] {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 64px;
    border-radius: 8px;
    background: rgb(0, 123, 255);
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
    opacity: 1;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 64px;
    color: #fff;
    vertical-align: top;
    text-decoration: none
}

.wallpaperList img[data-v-6657129c] {
    border-radius: 16px;
    object-fit: fill
}

.wallpaperList-list[data-v-6657129c] {
    min-width: 1280px
}

.wallpaperDownload[data-v-6657129c] {
    position: relative;
    padding: 100px 200px 0;
    height: 360px;
    color: #fff;
    background-repeat: no-repeat;
    background-size: 100% 360px;
    margin-bottom: 300px
}

.wallpaperDownload-content[data-v-6657129c] {
    left: 200px;
    top: 284px;
    width: 1280px;
    height: 232px;
    opacity: 1;
    border-radius: 32px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, .05);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 60px;
    position: absolute;
    bottom: -83px
}

.novel[data-v-d2c67cac] {
    text-align: center;
    padding-left: 220px;
    padding-right: 220px;
    margin-bottom: 66px
}

.novel-category[data-v-d2c67cac] {
    margin-right: 32px
}

.novel-category[data-v-d2c67cac]:first-child {
    font-weight: 700
}

.novel-btn[data-v-d2c67cac] {
    display: inline-block;
    width: 320px;
    height: 56px;
    border-radius: 8px;
    background: rgb(0, 123, 255);
    justify-content: center;
    align-items: center;
    padding: 0 120px;
    opacity: 1;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 56px;
    color: #fff;
    text-align: left;
    vertical-align: top;
    text-decoration: none
}

.novel-list[data-v-d2c67cac] {
    overflow: hidden;
    width: 100%;
    text-align: left
}

.novel-list img[data-v-d2c67cac] {
    flex: 0
}

.download-page[data-v-db346915] {
    width: 100%;
    height: calc(100% - 72px);
    background: #eff3f6
}

.header[data-v-db346915] {
    min-width: 375px;
    box-sizing: content-box;
    height: 72px;
    opacity: 1;
    background: rgba(255, 255, 255, .5);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 354px 0 380px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10000
}

.headerTitle[data-v-db346915] {
    width: 274px
}

.headerDownload[data-v-db346915] {
    width: 142px
}

.intro[data-v-db346915] {
    width: 100%;
    height: 240px;
    opacity: 1;
    background: rgba(255, 255, 255, .5);
    padding: 48px 0 32px;
    text-align: center
}

.introIcon[data-v-db346915] {
    width: 80px
}

.introTitle[data-v-db346915] {
    margin: 24px 0 12px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #333
}

.download[data-v-db346915] {
    width: 1000px;
    margin: 0 auto 80px;
    height: 420px;
    opacity: 1;
    padding: 32px 0 0
}

.downloadIcon[data-v-db346915] {
    margin-bottom: 24px
}

.downloadBox[data-v-db346915] {
    display: flex;
    gap: 0 20px
}

.downloadBoxTop[data-v-db346915] {
    width: 272px;
    margin: 0 auto
}

.downloadBoxItem[data-v-db346915] {
    width: 320px;
    height: 340px;
    padding: 24px 10px 10px;
    opacity: 1;
    background: #ffffff;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 16px #00000014
}

.downloadBoxItemStep[data-v-db346915] {
    font-size: 14px;
    line-height: 16px;
    color: #333
}

.downloadBoxItemTitle[data-v-db346915] {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #333;
    margin: 14px 0 16px
}

.downloadBoxItemDesc[data-v-db346915] {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 28px;
    color: #333
}

.downloadBoxItemIcon[data-v-db346915] {
    margin: 0 auto;
    display: block;
    width: 300px
}

.footer[data-v-db346915] {
    margin: 80px auto 0;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    color: #9e9e9e
}

.footerBottom[data-v-db346915] {
    display: flex;
    align-items: center;
    justify-content: center
}

.footerPolice[data-v-db346915] {
    width: 20px;
    margin-right: 5px
}

.download-btn[data-v-25bb0cd6] {
    display: block;
    text-decoration: none;
    width: 200px;
    height: 52px;
    border-radius: 100px;
    background: linear-gradient(129deg, #1bed77 16%, #1bdd8a 42%, #1eca86 91%);
    box-shadow: 0 4px 15px #07cd5a45;
    font-size: 28px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    cursor: pointer
}

.custom[data-v-25bb0cd6] {
    overflow: hidden
}

.banner[data-v-25bb0cd6] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, rgba(210, 227, 252, .5))
}

.banner-shape1[data-v-25bb0cd6] {
    position: absolute;
    left: 150px;
    top: 354px;
    width: 160.48px;
    height: 160.48px;
    transform: rotate(-45deg);
    border: 2px solid #d2e3fc
}

.banner-shape2[data-v-25bb0cd6] {
    position: absolute;
    right: 12%;
    top: 403px;
    width: 75px;
    height: 75px;
    border-radius: 75px;
    background: #d2e3fc
}

.banner-shape3[data-v-25bb0cd6] {
    position: absolute;
    right: 10%;
    top: 378px;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: #d2e3fc
}

.banner-shape4[data-v-25bb0cd6] {
    position: absolute;
    right: 0;
    top: 1px;
    width: 497px;
    height: 296px;
    background-image: url(../image/t0184cc5860a2d5d960.png);
    background-size: 100% 100%
}

.banner-container[data-v-25bb0cd6] {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 1500px;
    height: 600px;
    text-align: center;
    margin: 63px auto 0;
    z-index: 1
}

.banner-img[data-v-25bb0cd6] {
    width: 731px;
    height: 441px
}

.banner-right[data-v-25bb0cd6] {
    width: 750px
}

.banner-logo[data-v-25bb0cd6] {
    width: 68px;
    height: 68px;
    vertical-align: middle
}

.banner-title[data-v-25bb0cd6] {
    margin-left: 12px;
    font-size: 48px;
    color: #3d3d3d;
    vertical-align: middle
}

.banner-slogan[data-v-25bb0cd6] {
    margin: 8px 0 37px;
    font-size: 40px;
    color: #3d3d3d
}

.banner-btn[data-v-25bb0cd6] {
    margin: 0 auto 24px
}

.banner p[data-v-25bb0cd6] {
    font-size: 14px;
    line-height: 28px;
    color: #767676
}

.banner[data-theme=v1][data-v-25bb0cd6] {
    background-repeat: no-repeat;
    background-size: 1920px 660px
}

@media screen and (min-width: 1860px) {
    .banner[data-theme=v1][data-v-25bb0cd6] {
        background-size: 100% auto
    }
}

.banner[data-theme=v1] .banner-container[data-v-25bb0cd6] {
    margin-top: 120px
}

.banner[data-theme=v1] .banner-right[data-v-25bb0cd6] {
    margin-top: 80px;
    padding-left: 29px
}

.banner[data-theme=v1] .banner-logo-title[data-v-25bb0cd6] {
    text-align: left
}

.banner[data-theme=v1] .banner-logo-title .banner-logo[data-v-25bb0cd6] {
    width: 64px;
    height: 64px
}

.banner[data-theme=v1] .banner-logo-title .banner-title[data-v-25bb0cd6] {
    color: inherit;
    height: 64px;
    opacity: 1;
    font-family: Microsoft YaHei;
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em
}

.banner[data-theme=v1] .banner-slogan[data-v-25bb0cd6] {
    color: inherit;
    height: 32px;
    margin-bottom: 16px;
    margin-top: 21px;
    opacity: 1;
    font-family: Microsoft YaHei;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0em;
    text-align: left
}

.banner[data-theme=v1] .soft-info[data-v-25bb0cd6] {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 350px
}

.banner[data-theme=v1] .soft-info p[data-v-25bb0cd6] {
    color: inherit;
    opacity: .8;
    width: 160px;
    text-align: left;
    overflow: hidden;
    height: 18px;
    margin-right: 10px;
    margin-bottom: 8px;
    font-family: PingFang SC;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em
}

.banner[data-theme=v1] .banner-btn[data-v-25bb0cd6] {
    margin: 16px auto 16px 0
}

.banner[data-theme=v1] .theme-tip[data-v-25bb0cd6] {
    opacity: .8;
    color: inherit;
    text-align: left
}

.item[data-v-25bb0cd6] {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto;
    padding: 110px 0
}

.item[data-v-25bb0cd6]:nth-child(odd) {
    flex-direction: row-reverse
}

.item[data-v-25bb0cd6]:nth-child(2n) {
    flex-direction: row
}

.item-con[data-v-25bb0cd6] {
    width: 600px
}

.item-title[data-v-25bb0cd6] {
    font-size: 52px;
    color: #3d3d3d
}

.item-desc[data-v-25bb0cd6] {
    font-size: 16px;
    color: #3d3d3d;
    margin: 24px 0 30px
}

.item img[data-v-25bb0cd6] {
    max-width: 776px
}