/* 页面初始化 */
:root {
    /* 内容最大宽度 */
    --max-width: 1200px;
    /* 主题颜色-蓝色 */
    --blue: #63d6fd;
}
* {
    /* 设置盒子模型 */
    box-sizing: border-box;
    font-family: Poppins, Poppins, Noto Sans SC;
}

html,
body {
    margin: unset !important;
    overflow-x: hidden;
    font-family: Poppins, Poppins, Noto Sans SC;
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4 {
    margin: 0;
}
/* 下拉框 - start*/
a {
    text-decoration: none;
    color: #1a1a1a;
}
img {
    display: inline-block;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb80 {
    margin-bottom: 80px;
}
/* 常用框架类 */
.wr-container {
    background-color: #fff;
}
.wr-container.grey {
    background-color: #f9f9f9;
}
/* 模块盒子类，设置最大宽度 */
.wr-section {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 0;
}
/* 模块标题 */
.wr-section h2.section-title {
    padding: 0 50px;
    margin: 0;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 60px;
}
.wr-section h2.section-title.mb60 {
    margin-bottom: 60px;
}
.wr-section h2.section-title.mb50 {
    margin-bottom: 50px;
}
.wr-section h2.section-title.mb80 {
    margin-bottom: 80px;
}
.wr-section .wr-flex-left h2.section-title {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size: 36px;
    color: #1f1f1f;
    line-height: 45px;
    text-align: left;
    margin-bottom: 16px;
}
/* 模块副标题 */
.wr-section h3.section-sec-title {
    padding: 0 50px;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    margin-bottom: 30px;
}
.wr-section .wr-flex-left h3.section-sec-title {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    margin-bottom: 16px;
    text-align: left;
}
.wr-section .wr-flex-left h3.section-sec-title.mb40 {
    margin-bottom: 40px;
}
.fw500 {
    font-weight: 500;
}
.fw600 {
    font-weight: 600;
}
/* 流式布局类样式 */
.wr-flex-content {
    display: flex;
    justify-content: space-between;
}
.wr-flex-content.flex-center {
    justify-content: center;
}
.wr-flex-content.flex-start {
    justify-content: flex-start;
}
.wr-flex-content.col {
    flex-direction: column;
}
.wr-flex-content.reverse {
    flex-direction: row-reverse;
}
.wr-flex-content.flex-wrap {
    flex-wrap: wrap;
}
.wr-flex-content.noRes {
    flex-direction: row !important;
}
.flex1 {
    flex: 1;
}
.gap8 {
    gap: 8px;
}
.gap10 {
    gap: 10px;
}
.gap12 {
    gap: 12px;
}
.gap16 {
    gap: 16px;
}
.gap20 {
    gap: 20px;
}
.gap30 {
    gap: 30px;
}
.gap40 {
    gap: 40px;
}
.gap50 {
    gap: 50px;
}
.gap80 {
    gap: 80px;
}
.gap100 {
    gap: 100px;
}
.faq-section .wr-section h2.section-title {
    margin-bottom: 60px;
}
/* 常用按钮类 */
.trial-btn {
    line-height: inherit;
}
.w-btn {
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    height: 50px;
    line-height: 50px;
    padding: 0px 20px;
    transition: all 0.3s ease;
}
.w-btn.thin {
    height: 40px;
    line-height: 40px;
}
.w-btn.blue {
    background-color: var(--blue);
    color: #fff;
}
.w-btn.blue:hover,.goBtn:hover {
    box-shadow: 0px 3px 10px 0px rgba(99, 214, 253, 0.7);
}
.w-btn.green {
    background-color: green;
}
.w-btn.black {
    background-color: #000000;
    color: #fff;
}
.w-btn.black:hover {
    background-color: #2c2c2c;
}
.w-btn.border {
    border: 1px solid #000000;
    color: #000000;
}
.w-btn.border:hover {
    border: 1px solid #000000;
    background-color: #000000;
    color: #fff;
}
.loginBtn {
    display: flex;
    justify-content: center;
}
.loginBtn .login-icon {
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.buyBtn {
    background: #40cfff;
    color: #fff;
    border-radius: 8px 8px 8px 8px;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
}
.buyBtn:hover {
    box-shadow: 0px 3px 10px 0px rgba(99, 214, 253, 0.7);
}
.blueBtn {
    background: #40cfff;
    color: #fff;
    border-radius: 8px 8px 8px 8px;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    line-height: 1.2;
    text-align: center;
}
.blueBtn:hover {
    box-shadow: 0px 3px 10px 0px rgba(99, 214, 253, 0.7);
}
/* 通用banner 样式 */
.top {
    background-image: url(/static/swift_proxy/images/use_cases/index/banner-bg.png);
    background-size: 100% 100%;
}
.banner-Wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}
.breadcrumbtext {
    padding-top: 36px;
}
.bannerContent {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 80px;
}
.banner-left,
.banner-right {
    flex: 1;
}
.banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-right img {
    display: inline-block;
    width: 100%;
}
.banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.banner-title h1 {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size: 46px;
    color: #000000;
    padding-top: 80px;
}
.banner-sec-title h2 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    margin-bottom: 10px;
}
.banner-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5rem;
}
.bannerList-wrap {
    margin-top: 30px;
    margin-bottom: 50px;
}
.bannerList-item {
    display: flex;
    gap: 18px;
    align-items: center;
}
.bannerList-item img {
    display: inline-block;
}
.bannerBnt-wrap {
    display: flex;
    gap: 20px;
}
.el-breadcrumb__inner a,
.el-breadcrumb__inner.is-link {
    color: #afbcc1;
    font-weight: normal;
}
.el-breadcrumb__item:last-child .el-breadcrumb__inner,
.el-breadcrumb__item:last-child .el-breadcrumb__inner a,
.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
    color: #333;
}

/* 使用案例模块 */
.case-item-wrap {
    flex-wrap: wrap;
    margin: 50px 0;
}
.case-item {
    border-radius: 16px 16px 16px 16px;
    border: 1px solid #e6eaf0;
    background: #f9f9f9;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    will-change: background-color;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.case-item:hover {
    background: #fff;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
}
.case-item-img {
}
.case-item-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    padding: 0;
}
.case-item-desc {
    font-weight: 400;
    font-size: 14px;
    flex: 1;
}
.case-item-btn {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.case-item-btn .btn-a {
    border-radius: 20px;
    border: 1px solid rgba(102, 102, 102, 0.6);
    padding: 6px 18px;
    padding-right: 30px;
    font-weight: 400;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    will-change: color background-color, border-color;
    position: relative;
}
.case-item:hover .btn-a {
    background: #63d6fd;
    color: #fff;
    border-color: transparent;
}
.case-item .btn-a::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    background-image: url(/static/swift_proxy/images/use_cases/index/more-icon.png?v={$res_ver});
    top: 50%;
    right: 15px;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}
.case-item:hover .btn-a::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    background-image: url(/static/swift_proxy/images/use_cases/index/more-icon-active.png?v={$res_ver});
    top: 50%;
    right: 10px;
    transform: translateY(-5px);
}
.showBtn-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.showBtn a {
    background: #e5f3f7;
    border-radius: 20px;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 36px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    display: flex;
    align-items: center;
}
.showBtn a:hover {
    background: #63d6fd;
    color: #fff;
}
.showBtn:hover .arrow-icon {
    background-image: url(/static/swift_proxy/images/use_cases/seo/arrow-active.png?v={$res_ver});
}
.arrow-icon {
    width: 12px;
    height: 12px;
    margin-left: 7px;
    background-image: url(/static/swift_proxy/images/use_cases/seo/arrow.png?v={$res_ver});
}
/*  */
.border-black {
    border: 1px solid #000;
}
.footer-banner-title {
    max-width: 810px;
    margin: 0 auto;
    margin-bottom: 60px;
}
/* svg动画模块 */
.svgAni-left {
    flex: 1;
}
.svgAni-right {
    flex: 2;
}
.svgAni-left-title {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 16px;
}
.svgAni-left-desc {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-bottom: 40px;
}
/*  */
/* 响应式 */
@media (max-width: 600px) {
    .banner-Wrap {
        padding: 20px;
    }
    .bannerBnt-wrap {
        flex-direction: column;
    }
    .wr-flex-content {
        flex-direction: column;
    }
    .wr-flex-content.noRes {
        flex-direction: row;
    }
    .banner-right {
        display: none;
    }
    .case-item {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 1200px) {
    .banner-Wrap {
        padding: 20px;
    }
    .wr-section {
        padding-left: 10px;
        padding-right: 10px;
    }
}
