* {
    box-sizing: border-box;
}
.top-banner {
    margin-top: 72px;
    position: relative;
    width: 100%;
    height: 440px;
    background: linear-gradient(360deg, #008FFF 0%, #0057FF 100%);
    overflow: hidden;
}
.top-banner .banner-content {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    height: 100%;
    padding-left: 40px;
    margin: 0 auto;
    text-align: left;
}
.top-banner .banner-content .line-1 {
    display: flex;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 12px;
}
.top-banner .banner-content .line-1 .logo-1 {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}
.top-banner .banner-content .line-1 .line-1-desc {
    line-height: 1;
    padding-left: 12px;
    font-size: 18px;
    color: #fff;
}
.top-banner .banner-content .line-1 .line-1-desc.border {
    padding-left: 0;
    padding-right: 12px;
    border-right: 2px solid #fff;
}
.top-banner .banner-content .line-2 {
    margin-bottom: 12px;
    line-height: 66px;
    font-size: 48px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}
.top-banner .banner-content .line-3 {
    width: 498px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #fff;
}
.top-banner .banner-content .btn {
    width: 128px;
    height: 44px;
    line-height: 44px;
    background: #FF9A02;
    border-radius: 42px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
}
.top-banner .banner-content-right {
    height: 440px;
    padding-top: 33px;
}
.top-banner .banner-content-right .banner-img {
    width: 584px;
    height: 407px;
}
.card-wrapper {
    padding: 80px 0;
    background-color: #fff;
}
.card-wrapper:nth-child(2n+1) {
    background-color: #FAFBFC;
}
.card-wrapper .card-title {
    margin-bottom: 60px;
    font-size: 32px;
    font-weight: 500;
    color: #303133;
    text-align: center;
}
.module-list {
    display: flex;
    justify-content: center;
    width: 100%;
}
.module-list .module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 80px;
}
.module-list .module-item:last-child {
    margin-right: 0;
}
.module-list .module-item .module-item-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.module-list .module-item .module-item-txt {
    font-size: 20px;
    font-weight: 500;
    color: #303133;
}
.example-list {
    display: flex;
    flex-direction: column;
}
.example-list .example-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.example-list .example-item:nth-child(2n) {
    flex-direction: row-reverse;
}
.example-list .example-item>img {
    width: 620px;
    height: 480px;
    margin-left: 80px;
}
.example-list .example-item:nth-child(2n)>img {
    margin-right: 80px;
    margin-left: 0;
}
.example-list .example-item .example-content {
    display: flex;
    flex-direction: column;
    width: 460px;
}
.example-list .example-item .example-content .example-title {
    font-size: 30px;
    font-weight: 600;
    color: #303133;
    margin-bottom: 8px;
}
.example-list .example-item .example-content .example-remark {
    margin-bottom: 40px;
    color: #606266;
    font-size: 20px;
    font-weight: 600;
}
.example-list .example-item .example-content .example-ul {
    color: #606266;
    font-size: 16px;
    list-style: circle;
}
.example-list .example-item .example-content .example-ul>li {
    position: relative;
    line-height: 20px;
    margin-bottom: 22px;
    padding-left: 15px;
}
.example-list .example-item .example-content .example-ul>li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: #676C70;
    border-radius: 50%;
}
.example-list .example-item .example-content .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 44px;
    margin-top: 34px;
    font-size: 16px;
    color: #fff;
    background-color: #0F93FF;
    border-radius: 26px;
    border: none;
    cursor: pointer;
}
.card-wrapper.account .card-title {
    margin-bottom: 33px;
}
.account-trans {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.account-trans .account-banner {
    width: 794px;
    height: 512px;
    margin-bottom: 27px;
}
.account-trans .account-desc {
    font-size: 18px;
    color: #000000;
}

.m-center {
    width: 1200px;
    margin: 0 auto;
}