﻿.pt_container {
    display: flex;
    align-items: center;
}

.left-image {
    width: 2rem; /* 设置图片宽度 */
    height: 2rem; /* 保持图片比例 */
    overflow: hidden; /* 隐藏超出部分 */
    display: flex; /* 使用flex布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

    .left-image img {
        max-width: 100%; /* 最大宽度为容器宽度 */
        max-height: 100%; /* 最大高度为容器高度 */
        object-fit: cover; /* 填充容器并裁剪多余部分 */
    }

.right-text {
    margin-left: 0.025rem; /* 图片和文字之间的间距 */
}

.logotext {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--wkz-band-bu1-color)
}

.social_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social_container_item {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .social_container_item img {
        width: 100%;
        height: 100%;
    }

.social_container_item_text {
    font-size: var(--wkz-g10)
}

.copy_cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.175rem;
}

.copy_cont_item {
    padding-right: 0.75rem;
}

    .copy_cont_item a {
        color: black;
    }

.wkz_ios_butpadd {
    padding-bottom: constant(safe-area-inset-bottom); /*兼容 IOS<11.2*/
    padding-bottom: env(safe-area-inset-bottom); /*兼容 IOS>11.2*/
}

/*** ProductDesc ***/

/*** end ProductDesc ***/


.theme-btn {
    font-size: 14px;
    color: var(--color-dark);
    padding: 14px 25px;
    transition: all .5s;
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1
}

    .theme-btn::before {
        content: "";
        height: 300px;
        width: 300px;
        background: var(--color-dark);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%) scale(0);
        transition: .5s cubic-bezier(.25,.46,.45,.94);
        z-index: -1
    }

    .theme-btn:hover {
        color: var(--color-white)
    }

        .theme-btn:hover::before {
            transform: translateY(-50%) translateX(-50%) scale(1)
        }

    .theme-btn i {
        margin-left: 5px
    }

    .theme-btn span {
        margin-right: 5px
    }

.theme-btn2 {
    background: var(--color-white);
    color: var(--color-dark)
}

    .theme-btn2::before {
        background: var(--theme-color)
    }

    .theme-btn2:hover {
        color: var(--color-dark)
    }
.required {
    color: var(--wkz-band-bu2-color)
}
/****/

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1
}

.site-title-tagline {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color)
}

    .site-title-tagline::before {
        content: "";
        position: absolute;
        height: 10px;
        width: 100%;
        background: var(--theme-color);
        opacity: .2;
        left: -2px;
        bottom: 0
    }

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--color-dark);
    margin-bottom: 0
}

    .site-title span {
        color: var(--theme-color)
    }

.site-heading p {
    margin-top: 15px
}
