/* --------------------------- 字体 --------------------------- */
h1 strong,
h2 strong,
h3 strong,
h4 strong {
    font-family: Manrope !important;
}
article h1,
article h2,
article h3,
article h4 {
    font-family: Manrope !important;
    color: #101f3a;
    font-weight: 500;
}
article h1 {
    font-size: 56px;
    line-height: 74px;
}
article h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 60px;
}
article h3 {
    font-size: 24px;
    line-height: 36px;
}
article h4 {
    font-size: 20px;
    line-height: 30px;
}
article p {
    font-size: 16px;
    line-height: 28px;
    color: #303c42;
}
/* banner副标 */
.banner-sub-title {
    font-size: 30px;
    line-height: 40px;
}
/* banner正文 */
.banner-info {
    font-size: 22px;
    line-height: 37px;
}
/* 注释 */
.note {
    font-size: 14px;
    line-height: 24px;
}

@media (max-width: 767px) {
    article h1 {
        font-size: 36px;
    }
    .banner-sub-title {
        font-size: 28px;
    }
    article h2 {
        margin: 30px 0 20px !important;
        font-size: 26px;
        line-height: 50px;
    }
    article h3 {
        font-size: 22px;
    }
    .banner-info {
        font-size: 20px;
    }
}

/* --------------------------- 首页banner --------------------------- */

.banner h2 {
    font-size: 50px !important;
    font-weight: 600 !important;
}
.banner .tag,
.banner p.intro,
.banner .btn-link a,
.banner .remark {
    font-size: 20px !important;
}
.banner .same-width .content-top {
    width: 47%;
}
.banner .remark {
    display: flex;
    align-items: center;
}
.banner .remark > * {
    margin-right: 7px;
}
.banner .btn-link {
    margin: 50px 0 0 !important;
}

/* --------------------------- 排版 --------------------------- */

/* 主内容上下划分 */
.same-width {
    width: 1200px;
    margin: 0 auto;
}

/* 主内容左右划分 */
.display-flex {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.display-flex .content-left,
.display-flex .content-right {
    width: 48%;
}

/* 类表：栅格模式 */
div .template-list-wrap {
    align-items: stretch;
}

/* 其他尺寸边距调整 */
@media (max-width: 1500px) and (min-width: 768px) {
    .display-flex,
    .same-width {
        width: 1100px;
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .display-flex,
    .same-width {
        max-width: calc(100% - 50px);
    }
    .display-flex .content-right {
        margin-top: 30px;
    }
    .container .display-flex .content-left,
    .container .display-flex .content-right {
        width: 100%;
        max-width: initial;
    }
}

/* --------------------------- 按钮 --------------------------- */

/* 默认 */
.btn-link a {
    padding: 0 25px;
    min-width: 130px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    vertical-align: top;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    background-color: #00b7ff;
    color: #fff;
}

/* 深蓝背景 */
.btn-link .blue-bg {
    background-color: #006ee1;
}

/* 无背景色 */
.btn-link .no-bg {
    background-color: rgb(255 255 255 / 0%);
    border: 1px solid #006ee1;
    color: #006ee1;
}

/* 动画效果 */
.animation-btn:hover:after {
    content: "";
    display: inline-block;
    -moz-animation: aperture 0.7s;
    -webkit-animation: aperture 0.7s;
    animation: aperture 0.7s;
    width: 35px;
    height: 35px;
    position: absolute;
    background: rgba(206, 235, 247, 0.2);
    border-radius: 50%;
    animation-iteration-count: infinite;
    animation-duration: 1.3s;
    left: 0;
    right: 0;
    top: 0.5vw;
    margin: auto;
    line-height: 30px;
}
@keyframes aperture {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(2);
    }
    20% {
        transform: scale(3);
    }
    30% {
        transform: scale(4);
    }
    40% {
        transform: scale(5);
    }
    50% {
        transform: scale(6);
    }
    60% {
        transform: scale(7);
    }
    70% {
        transform: scale(8);
    }
    80% {
        transform: scale(9);
    }
    90% {
        transform: scale(10);
    }
    100% {
        transform: scale(11);
    }
}

/* 两个并列(主、次) */
.template-double-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.template-double-btn a:first-child {
    margin-right: 20px;
}

/* ---------------------------- 背景图 -------------------------- */

.template-background {
    display: flex;
    align-items: center;
    min-height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ---------------------------- 列点 -------------------------- */

/* 蓝色小点 */
.template-dot li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
    line-height: 28px;
    list-style: none;
}
.template-dot li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #006ee1;
    border-radius: 50%;
    top: 13px;
    left: 0px;
}

/* 绿色打钩图标 */
.template-dot-icon li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 28px;
    list-style: none;
}
.template-dot-icon li::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 7px;
    left: 0px;
    background: url("/wp-content/uploads/svg/dagou-green.svg") center no-repeat;
    background-size: cover;
}

/* -------------------------- 带箭头的a标签 ---------------------------- */

.template-link-arrow a {
    position: relative;
    color: #006ee1;
    text-decoration: none;
}
.template-link-arrow a:hover {
    text-decoration: underline;
}
.template-link-arrow a::after {
    display: inline-block;
    position: relative;
    top: 5px;
    right: -3px;
    width: 14px;
    height: 14px;
    content: "";
    background: url("/wp-content/uploads/svg/arrow-right-blue.svg") right
        no-repeat;
    background-size: 14px;
    padding-right: 20px;
    transform: rotate(-45deg);
}

/* --------------------------- 轮播图 --------------------------- */

.template-silde-wrap {
    position: relative;
}
.template-silde-wrap .item {
    position: absolute;
    width: 100%;
    display: none;
}
.template-silde-wrap .item:first-child {
    display: block;
}
.template-silde-page {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
}
.template-silde-page .page {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background-color: #ccc;
    text-align: center;
    margin: 0 4px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
}
.template-silde-page .page.active,
.template-silde-page .page:hover {
    background-color: #006ee1;
}

/* --------------------------- tab栏切换 --------------------------- */

.template-menu-slide .menu-wrap .content {
    text-align: center;
    cursor: pointer;
    padding-bottom: 27px;
    position: relative;
}
.template-menu-slide .menu-wrap .content::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 3px;
    background-color: #f7f9fa;
    position: absolute;
    left: 0;
    bottom: 0;
}
.template-menu-slide .menu-wrap .title {
    font-size: 20px;
    font-family: Manrope !important;
    font-weight: 500;
    color: #101f3a;
}
.template-menu-slide .menu-wrap .active::after {
    background-color: #006ee1;
}
.template-menu-slide .slide-wrap {
    position: relative;
}
.template-menu-slide .slide-wrap .slide-content {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    display: none;
}
.template-menu-slide .slide-wrap .slide-content:nth-of-type(1) {
    display: flex;
}

/* --------------------------- 手风琴模式图文切换 --------------------------- */

.template-slide-img {
    position: relative;
}
.template-slide-img .img {
    position: absolute;
    display: none;
}
.template-slide-img .img:first-child {
    display: block;
}
.template-slide-img {
    display: flex;
    align-items: center;
}
.template-text-slide .info-wrap {
    margin-bottom: 40px;
}
.template-text-slide .btn-link a {
    margin-top: 30px;
}
.template-text-slide .item {
    margin-bottom: 20px;
}
.template-text-slide .title-wrap {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.template-text-slide .title-wrap:hover h3 {
    color: #006ee1;
}
.template-text-slide h3 {
    margin: 0;
    padding-right: 25px;
}
.template-text-slide .btn {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid #3d4a59;
    border-radius: 5px;
    text-align: center;
    line-height: 22px;
    right: 0;
    top: 13px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
}
.template-text-slide .title-wrap p {
    margin-bottom: 0;
    height: 48px;
}
.template-text-slide .detail-wrap {
    padding-top: 16px;
    display: none;
    margin-bottom: 0;
}
.template-text-slide .slide-down .detail-wrap {
    display: block;
}
.template-text-slide .btn::before,
.template-text-slide .btn::after {
    content: "";
    width: 10px;
    height: 1px;
    display: inline-block;
    position: absolute;
    right: 6px;
    top: 10px;
    background: #303c4f;
}
.template-text-slide .btn::before {
    transform: rotate(90deg);
    transition: all 0.2s;
}
.template-text-slide .slide-down .btn::before {
    transform: rotate(0);
}

/* --------------------------- 标签 --------------------------- */

/* .template-tag-1 {
    font-size: 20px;
    width: max-content;
    max-width: 100%;
    padding: 0 10px;
    line-height: 33px;
    border-radius: 18px;
    font-family: Manrope !important;
    font-weight: 500;
}
.template-tag-2 {
    font-family: Manrope !important;
    font-weight: 500;
    font-size: 20px;
}
.template-tag-2 + h2 {
    text-align: left;
    margin: -20px 0 25px;
} */

/* --------------------------- 表单弹窗 --------------------------- */

.template-form-popup .form-columns-0 {
    max-width: 100% !important;
}
.template-form-popup .hbspt-form input,
.template-form-popup .hbspt-form select {
    border-radius: 8px;
    margin-top: 0;
    height: 45px;
    border: 1px solid #808e9c;
    padding-left: 8px;
    color: #303c42;
}
.template-form-popup .hs-submit input[type="submit"] {
    color: #fff;
    font-size: 18px;
    margin: 40px auto 0;
    width: 180px;
    line-height: 50px;
    background-color: #006ee1;
    border-radius: 5px;
    border: none;
    display: block;
    height: initial;
    padding: 0;
}
.template-form-popup .hs-submit input[type="submit"]:hover {
    background-color: #00b7ff;
}
.template-form-popup .hbspt-form .field {
    margin-bottom: -5px;
    min-height: initial;
}
.template-form-popup .form-columns-1 p {
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 25px;
}
#primary .template-form-popup .form-columns-1 textarea.hs-input {
    width: 98%;
    border: 1px solid #808e9c;
    padding-left: 8px;
    color: #303c42;
    border-radius: 8px;
}
.template-form-popup {
    position: fixed;
    width: 100%;
    background-color: rgb(0 0 0 / 60%);
    z-index: 1111111111;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    align-items: center;
    display: none;
}
.template-form-popup .form-content {
    background-color: #fff;
    padding: 10px 32px 40px 43px;
    max-width: 700px;
    border-radius: 13px;
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
}
.template-form-popup .close-form {
    width: 22px;
    height: 22px;
    line-height: 18px;
    color: #fff;
    background-color: #00b7ff;
    font-size: 13px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    top: 0px;
    left: 99.5%;
    cursor: pointer;
}
.template-form-popup .close-form:hover {
    background-color: #006ee1;
    color: #fff;
}

/* --------------------------- 表单 --------------------------- */

.template-hbspt-forms .field {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-bottom: 0;
}
.template-hbspt-forms .field input,
.template-hbspt-forms .field select,
.template-hbspt-forms .field textarea {
    width: 98%;
    border-radius: 5px;
    height: 50px;
    margin-top: 0;
    color: #777;
    padding: 5px 8px;
}
div .hs_message {
    display: block;
    width: 100%;
}
.template-hbspt-forms .hs-dependent-field div input {
    height: initial;
}
.template-hbspt-forms .hs-submit input[type="submit"] {
    width: 180px;
    margin: 40px auto;
    display: block;
    padding: 0;
    line-height: 50px;
    border-radius: 5px;
}
.template-hbspt-forms .hs-form-required {
    display: none;
}
.template-hbspt-forms
    .legal-consent-container
    .field.hs_LEGAL_CONSENT\.subscription_type_5214633 {
    min-height: initial;
    margin-bottom: 0;
}
.template-hbspt-forms .legal-consent-container * {
    font-size: 14px;
}
.template-hbspt-forms .hs_message {
    width: 100%;
    height: 100px;
}
.template-hbspt-forms .field textarea {
    height: initial;
}
.template-hbspt-forms .field .hs-form-booleancheckbox input {
    width: initial;
}

@media (max-width: 767px) {
    article h1 {
        font-size: 30px;
    }
    article h2 {
        font-size: 24px;
    }
    article h3 {
        font-size: 20px;
    }
    .template-menu-wrap {
        display: block;
        border: none;
    }
    div .template-menu-wrap .link-wrap {
        display: none;
    }
    .template-menu-wrap .btn-link {
        display: flex;
        margin-top: 20px;
    }
    .template-menu-wrap.fixed {
        position: initial;
        box-shadow: none;
    }
    .template-list-wrap .item {
        width: 100%;
    }
    .container .template-menu-slide .menu-wrap .content {
        width: 100%;
        padding: 15px 0;
    }
    .container .template-double-btn a:first-child {
        margin: 0 0 20px 0;
    }
}
