* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root,
body {
    font-size: 16px;
    --ratio-size: calc(100vw / 1920);
    --main-color: #272B85;
}

body.hidden {
    overflow: hidden;
}

.type-area {
    padding-left: max(50px, calc(var(--ratio-size) * 160));
    padding-right: max(50px, calc(var(--ratio-size) * 160));
}

a {
    color: inherit;
    text-decoration: none;
}

.common-b-title {
    font-size: max(calc(var(--ratio-size) * 88), 28px);
    line-height: 1;
}

.common-sub-title {
    font-size: max(calc(var(--ratio-size) * 38), 24px);
    line-height: 1;
}

.common-m-title {
    font-size: max(calc(var(--ratio-size) * 28), 20px);
    line-height: 1;
}

.common-inside-title {
    font-size: max(calc(var(--ratio-size) * 48), 26px);
    line-height: 1;
    color: var(--main-color);
}

.common-serial-font {
    font-size: max(calc(var(--ratio-size) * 48), 26px);
    line-height: 1;
    color: var(--main-color);
}

.common-button a {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--main-color);
    border-radius: 5000px;
    font-size: 14px;
    color: #fff;
}

.common-button.dot a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    padding-left: 30px;
    padding-right: 20px;
    transition: all .5s;
    cursor: pointer;
}

.common-button.dot a::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin-left: 25px;
    border-radius: 50%;
    background-color: #fff;
    transition: all .5s;
}

.common-button.dot a:hover::after {
    animation: headerDotAn 3s .5s linear infinite;
}

.common-button.dot a:hover {
    transform: scale(1.1);
}

@keyframes headerDotAn {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(100%);
    }

    75% {
        transform: translateX(-100%);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background-color: #fff;
}

header nav {
    height: 100%;
    margin-left: calc(var(--ratio-size) * 80);
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 100%;
    list-style-type: none;
}

header nav ul li {
    padding: 28px 0;
    overflow: hidden;
}

header nav ul li a {
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 330%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main-color);
    opacity: 0;
    transition: all .5s;
}

header nav ul li a:hover::after {
    transform: translate(-50%, 130%);
    opacity: 1;
}

header nav ul li.active a {
    color: var(--main-color);
}

header nav ul li.active a::after {
    transform: translate(-50%, 130%);
    opacity: 1;
}

header .function {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 30px;
}

header .function .function-item {
    padding-left: 30px;
    border-left: 1px solid #BBBBBB;
}

header .phone-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

header .phone-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    transition: all .5s;
}

header .phone-menu-btn span:nth-child(2) {
    position: relative;
    background-color: transparent;
}

header .phone-menu-btn span:nth-child(2)::before,
header .phone-menu-btn span:nth-child(2)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    transition: all .5s;
}

header .phone-menu-btn.active span:nth-child(2)::before {
    transform: rotate(45deg);
}

header .phone-menu-btn.active span:nth-child(2)::after {
    transform: rotate(-45deg);
}

header .phone-menu-btn.active span:not(:nth-child(2)) {
    opacity: 0;
}

.phone-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background-color: #fff;
}

.phone-menu ul {
    list-style: none;
    border-top: 1px solid #c1c1c1;
}

.phone-menu ul li {
    position: relative;
    border-bottom: 1px solid #c1c1c1;
}

.phone-menu ul a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
}

main {
    margin-top: 80px;
}

footer {
    padding-top: max(30px, calc((100vw / 1920) * 65));
    padding-bottom: max(20px, calc((100vw / 1920) * 35));
    background-color: #F4F3F4;
}

footer .logo {
    width: 135px;
}

footer .logo img {
    width: 100%;
}

footer nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: max(15px, calc((100vw / 1920) * 20));
}

footer nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 70px;
    font-size: 14px;
}

footer nav ul a:hover {
    color: var(--main-color);
}

footer .copyright {
    margin-top: max(15px, calc(var(--ratio-size) * 35));
    font-size: 14px;
    color: rgba(0, 0, 0, .5);
}

footer .back-up-btn {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--main-color);
    cursor: pointer;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
}

footer .back-up-btn.active {
    visibility: visible;
    opacity: 1;
}

footer .back-up-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 3px #c1c1c1;
}

.index-page .banner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100vh - 80px);
    color: #fff;
}

.index-page .banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.index-page .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(140deg, #00000060, #00000000);
}

.index-page .banner .content {
    position: relative;
    z-index: 2;
}

.index-page .banner .content .common-b-title {
    font-weight: bold;
    opacity: 0;
}

.index-page .banner .content .text {
    width: min(600px, 100%);
    margin-top: max(15px, calc(var(--ratio-size) * 50));
    line-height: 1.5;
    opacity: 0;
}

.index-page .banner .content .common-button {
    margin-top: max(15px, calc(var(--ratio-size) * 36));
    opacity: 0;
}

.index-page .business {
    padding-top: max(30px, calc(var(--ratio-size) * 125));
    padding-bottom: max(30px, max(50px, calc(var(--ratio-size) * 160)));
}

.index-page .business .top-content {
    position: relative;
    padding-bottom: max(20px, calc(var(--ratio-size) * 30));
}

.index-page .business .top-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: max(calc(var(--ratio-size) * 80), 40px);
    height: max(3px, calc(var(--ratio-size) * 6));
    background-color: var(--main-color);
}

.index-page .business .top-content .common-sub-title {
    margin-top: max(10px, calc(var(--ratio-size) * 20));
}

.index-page .business .list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.index-page .business .list .item {
    display: flex;
    width: calc(50% - 10px);
}

.index-page .business .description-item.item {
    display: block;
}

.index-page .business .description-item .description-text {
    margin-top: calc(var(--ratio-size) * 18);
    line-height: 1.8;
}

.index-page .business .description-item .common-button {
    margin-top: max(20px, max(10px, calc(var(--ratio-size) * 20)));
}

.index-page .business .list .item .image {
    display: flex;
    width: calc(var(--ratio-size) * 385);
    min-height: calc(var(--ratio-size) * 385);
    background-color: #F4F3F4;
}

.index-page .business .list .item .image img {
    max-width: 45%;
    max-height: 45%;
    margin: auto;
}

.index-page .business .list .item .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: max(15px, calc(var(--ratio-size) * 30)) 0;
    margin-left: 20px;
    line-height: 1.8;
    border: 1px solid rgba(0, 0, 0, .2);
    border-left: transparent;
    border-right: transparent;
}

.index-page .business .list .item .content .text {
    margin-top: max(10px, calc(var(--ratio-size) * 20));
}

.index-page .business .list .item .content .serial {
    margin-top: auto;
    text-align: right;
}

.index-page .product {
    position: relative;
    padding-top: max(50px, calc(var(--ratio-size) * 160));
    padding-bottom: max(50px, calc(var(--ratio-size) * 160));
    color: #fff;
    background-color: #fff;
}

.index-page .product .top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: max(200px, calc(var(--ratio-size) * 720));
}

.index-page .product .top-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(140deg, #00000060, #00000000);
}

.index-page .product .top-bg img {
    width: 100%;
}

.index-page .product .content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.index-page .product .content .common-sub-title {
    position: relative;
    margin-top: max(10px, calc(var(--ratio-size) * 20));
}

.index-page .product .content .common-sub-title::after {
    content: '';
    position: absolute;
    bottom: min(-20px, calc((100vw / 1920) * -35));
    left: 50%;
    transform: translateX(-50%);
    width: max(calc(var(--ratio-size) * 80), 40px);
    height: max(3px, calc(var(--ratio-size) * 6));
    background-color: #fff;
}

.index-page .product .content .list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: calc((100vw / 1920) * 200);
}

.index-page .product .content .list .item {
    width: calc(var(--ratio-size) * 385);
}

.index-page .product .content .list .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.index-page .product .content .list .item .image {
    width: 100%;
    /* height: calc(var(--ratio-size) * 385); */
    aspect-ratio: 1/1;
    overflow: hidden;
}

.index-page .product .content .list .item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-page .product .content .list .item:hover .image img {
    transform: scale(1.1);
}

.index-page .product .content .list .item .name {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: max(var(--ratio-size) * 24, 18px);
    background-color: #7F7F7F;
}

.index-page .product .content .common-button {
    margin-top: max(30px, calc((100vw / 1920) * 60));
}

.business-page .banner {
    position: relative;
    width: 100%;
    height: calc(var(--ratio-size) * 480);
}

.business-page .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(140deg, #00000060, #00000000);
}

.business-page .banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.business-page .banner .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.business-page .top-content {
    position: relative;
    padding-top: calc(var(--ratio-size) * 145);
    text-align: center;
}

.business-page .top-content .common-inside-title {
    position: relative;
    visibility: hidden;
}

.business-page .top-content .common-inside-title::after {
    content: '';
    position: absolute;
    bottom: min(-20px, calc((100vw / 1920) * -30));
    left: 50%;
    transform: translateX(-50%);
    width: max(calc(var(--ratio-size) * 80), 40px);
    height: max(3px, calc(var(--ratio-size) * 6));
    background-color: var(--main-color);
}

.business-page .top-content .description {
    margin-top: max(30px, calc(var(--ratio-size) * 90));
    line-height: 1.5;
    visibility: hidden;
}

.business-page .top-content .text {
    margin-top: calc(var(--ratio-size) * 45);
    line-height: 1.8;
    visibility: hidden;
}

.business-page .list {
    padding-bottom: max(50px, calc(var(--ratio-size) * 160));
    margin-top: calc(var(--ratio-size) * 75);
}

.business-page .list .item {
    display: flex;
    align-items: stretch;
    visibility: hidden;
}

.business-page .list .item:not(:last-child) {
    margin-bottom: 20px;
}

.business-page .list .item .image {
    display: flex;
    width: calc(var(--ratio-size) * 385);
    min-height: calc(var(--ratio-size) * 385);
    background-color: #F4F3F4;
}

.business-page .list .item .image img {
    max-width: 45%;
    max-height: 45%;
    margin: auto;
}

.business-page .list .item .content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: max(15px, calc(var(--ratio-size) * 30)) 0;
    margin-left: 20px;
    line-height: 1.8;
    border: 1px solid rgba(0, 0, 0, .2);
    border-left: transparent;
    border-right: transparent;
}

.business-page .list .item .content .text {
    padding-bottom: 50px;
    margin-top: max(10px, calc(var(--ratio-size) * 20));
}

.business-page .list .item .content .common-button {
    position: absolute;
    bottom: calc(var(--ratio-size) * 40);
}

.business-page .list .item .content .serial {
    margin-top: auto;
    text-align: right;
}

.dialog-shade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 6;
    background-color: rgba(39, 43, 133, .8);
}

.dialog-shade .dialog {
    position: absolute;
    top: max(100px, calc(var(--ratio-size) * 150));
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 100px), 960px);
    margin-bottom: calc(var(--ratio-size) * 300);
}

.dialog-shade .dialog-top-content {
    position: relative;
    padding: 0 max(20px, calc(var(--ratio-size) * 61));
    padding-top: max(30px, calc(var(--ratio-size) * 70));
    padding-bottom: max(30px, calc(var(--ratio-size) * 90));
    text-align: center;
    background-color: #F4F3F4;
}

.dialog-shade .dialog-top-content .close-btn {
    position: absolute;
    top: max(20px, calc(var(--ratio-size) * 30));
    right: max(15px, calc(var(--ratio-size) * 30));
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max(40px, calc(var(--ratio-size) * 50));
    height: max(40px, calc(var(--ratio-size) * 50));
    border-radius: 50%;
    background-color: var(--main-color);
    cursor: pointer;
    transition: all .5s;
}

.dialog-shade .dialog-top-content .close-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 3px #5e5e5e;
}

.dialog-shade .dialog-top-content .common-inside-title {
    position: relative;
}

.dialog-shade .dialog-top-content .common-inside-title::after {
    content: '';
    position: absolute;
    bottom: min(-15px, calc(var(--ratio-size) * -35));
    left: 50%;
    transform: translateX(-50%);
    width: max(calc(var(--ratio-size) * 80), 40px);
    height: max(3px, calc(var(--ratio-size) * 6));
    background-color: var(--main-color);
}

.dialog-shade .dialog-top-content .text {
    margin-top: max(30px, calc(var(--ratio-size) * 90));
    line-height: 1.5;
}

.dialog-shade .dialog-list {
    padding: 0 max(10px, calc(var(--ratio-size) * 60));
    padding-bottom: calc(var(--ratio-size) * 70);
    background-color: #fff;
    text-align: justify;
}

.dialog-shade .dialog-list h2 {
    display: flex;
    align-items: center;
    padding-top: calc(var(--ratio-size) * 50);
    font-size: max(calc(var(--ratio-size) * 28), 20px);
    line-height: 1.5;
    color: var(--main-color);
}

.dialog-shade .dialog-list h2 span {
    margin-right: 11px;
    font-size: max(calc(var(--ratio-size) * 38), 24px);
}

.dialog-shade .dialog-list ul {
    padding-bottom: calc(var(--ratio-size) * 55);
    margin-top: calc(var(--ratio-size) * 30);
    list-style-type: none;
    line-height: 1.8;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.dialog-shade .dialog-list ul li {
    display: flex;
    position: relative;
    padding-left: 20px;
}

.dialog-shade .dialog-list ul li::before {
    position: absolute;
    left: 7px;
    top: 12px;
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
}

.dialog-shade .dialog-list p {
    margin-top: calc(var(--ratio-size) * 50);
}

.dialog-shade .empty-space {
    width: 100%;
    height: calc(var(--ratio-size) * 300);
}

.product-page .banner {
    position: relative;
    width: 100%;
    height: calc(var(--ratio-size) * 480);
}

.product-page .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(140deg, #00000060, #00000000);
}

.product-page .banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-page .banner .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.product-page .top-content {
    position: relative;
    padding-top: max(30px, calc(var(--ratio-size) * 145));
    text-align: center;
}

.product-page .top-content .common-inside-title {
    position: relative;
    visibility: hidden;
}

.product-page .top-content .common-inside-title::after {
    content: '';
    position: absolute;
    bottom: min(-20px, calc((100vw / 1920) * -30));
    left: 50%;
    transform: translateX(-50%);
    width: max(calc(var(--ratio-size) * 80), 40px);
    height: max(3px, calc(var(--ratio-size) * 6));
    background-color: var(--main-color);
}

.product-page .list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: max(20px, calc(var(--ratio-size) * 80));
    padding-bottom: max(30px, calc(var(--ratio-size) * 160));
    margin-top: max(50px, calc(var(--ratio-size) * 86));
    color: #fff;
    visibility: hidden;
}

.product-page .list .item {
    flex: 1;
}

.product-page .list .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-page .list .item .image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-page .list .item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.product-page .list .item:hover .image img {
    transform: scale(1.1);
}

.product-page .list .item .name {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    font-size: max(var(--ratio-size) * 24, 18px);
    background-color: #7F7F7F;
}

.mizutori-page {
    padding-bottom: max(30px, calc(var(--ratio-size) * 160));
}

.mizutori-page .banner {
    position: relative;
    width: 100%;
    height: calc(var(--ratio-size) * 480);
}

.mizutori-page .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(140deg, #00000060, #00000000);
}

.mizutori-page .banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mizutori-page .banner .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.mizutori-page .top-content {
    position: relative;
    padding-top: max(30px, calc(var(--ratio-size) * 145));
    text-align: center;
}

.mizutori-page .top-content .common-inside-title {
    position: relative;
    visibility: hidden;
}

.mizutori-page .top-content .common-inside-title::after {
    content: '';
    position: absolute;
    bottom: min(-20px, calc((100vw / 1920) * -30));
    left: 50%;
    transform: translateX(-50%);
    width: max(calc(var(--ratio-size) * 80), 40px);
    height: max(3px, calc(var(--ratio-size) * 6));
    background-color: var(--main-color);
}

.mizutori-page section.content {
    visibility: hidden;
}

.mizutori-page table {
    width: min(calc(100% - 100px), 960px);
    margin: 0 auto;
    margin-top: max(50px, calc(var(--ratio-size) * 90));
}

.mizutori-page table tr {
    transition: all .5s;
}

.mizutori-page table tr:hover {
    background-color: #f9f9f9;
}

.mizutori-page table td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    vertical-align: text-top;
    line-height: 1.8;
}

.mizutori-page table tr:first-child td:first-child {
    border-top: 2px solid rgba(0, 0, 0, 1);
}

.mizutori-page table tr:first-child td:not(:first-child) {
    border-top: 2px solid rgba(0, 0, 0, .1);
}

.mizutori-page table tr td:first-child {
    width: 160px;
    font-weight: bold;
}

.mizutori-page table td ul {
    list-style-position: inside;
}

.mizutori-page table td ul li {
    display: flex;
    position: relative;
    padding-left: 20px;
}

.mizutori-page table td ul li::before {
    position: absolute;
    left: 7px;
    top: 13px;
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
}

.contact-us-page {
    padding-bottom: max(50px, calc(var(--ratio-size) * 160));
}

.contact-us-page .banner {
    position: relative;
    width: 100%;
    height: calc(var(--ratio-size) * 480);
}

.contact-us-page .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(140deg, #00000060, #00000000);
}

.contact-us-page .banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-us-page .banner .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.contact-us-page .top-content {
    position: relative;
    padding-top: max(30px, calc(var(--ratio-size) * 145));
    text-align: center;
}

.contact-us-page .top-content .common-inside-title {
    position: relative;
    visibility: hidden;
}

.contact-us-page .top-content .common-inside-title::after {
    content: '';
    position: absolute;
    bottom: min(-20px, calc((100vw / 1920) * -30));
    left: 50%;
    transform: translateX(-50%);
    width: max(calc(var(--ratio-size) * 80), 40px);
    height: max(3px, calc(var(--ratio-size) * 6));
    background-color: var(--main-color);
}

.contact-us-page .address {
    width: min(calc(100% - 100px), 960px);
    margin: 0 auto;
    margin-top: max(50px, calc(var(--ratio-size) * 90));
}

.contact-us-page .address .list {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.contact-us-page .address .list .item {
    padding-top: max(20px, calc(var(--ratio-size) * 40));
    padding-bottom: max(15px, calc(var(--ratio-size) * 30));
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    visibility: hidden;
}

.contact-us-page .address .list .top {
    display: flex;
    line-height: 1.5;
    font-weight: bold;
}

.contact-us-page .address .list .top img {
    width: 44px;
    margin-right: 18px;
}

.contact-us-page .address .list .text {
    margin-top: max(15px, calc(var(--ratio-size) * 40));
    line-height: 1.8;
}

.contact-us-page .form-content {
    width: min(calc(100% - 100px), 960px);
    margin: 0 auto;
    margin-top: max(30px, calc(var(--ratio-size) * 55));
}

.contact-us-page .form-content .common-m-title {
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
}

.contact-us-page .form-content form {
    display: flex;
    gap: max(20px, calc(var(--ratio-size) * 40)) 20px;
    flex-wrap: wrap;
    margin-top: max(20px, calc(var(--ratio-size) * 60));
}

.contact-us-page .form-content .input-item {
    display: flex;
    /* align-items: center; */
    width: calc(50% - 10px);
    padding-left: 15px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #F4F3F4;
}

.contact-us-page .form-content .input-item .prompt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-top: 11px;
    font-size: 10px;
    color: #fff;
    background-color: #93C9FF;
    border-radius: 50%;
}

.contact-us-page .form-content .input-item .prompt.require {
    background-color: #FA2A25;
}

.contact-us-page .form-content .input-item.form-error {
    border-color: #FA2A25;
}

.contact-us-page .input-content {
    flex: 1;
    position: relative;
    height: 100%;
    margin-left: 14px;
}

.contact-us-page .input-content .text-input {
    position: relative;
    z-index: 1;
    /* padding: 10px; */
    width: 100%;
    height: 100%;
    padding-top: 24px;
    padding-bottom: 12px;
    outline: none;
    border: none;
    background-color: transparent;
    font-size: 16px;
}

.contact-us-page .input-content .input-label {
    position: absolute;
    top: 16px;
    left: 0;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000;
    font-size: 16px;
    transition: .3s;
    pointer-events: none;
}

.contact-us-page .input-content .text-input:focus+.input-label {
    top: 8px;
    left: 0;
    font-size: 12px;
    font-weight: 500;
}

/* placeholder 没有显示状态下，且没有focus的 text-input */
.contact-us-page .input-content .text-input:not(:placeholder-shown).text-input:not(:focus)+.input-label {
    top: 8px;
    left: 0;
    font-size: 12px;
    color: rgba(0, 0, 0, .5);
    font-weight: 500;
}

.contact-us-page .captcha-image img {
    width: auto;
    height: 100%;
}

.contact-us-page .form-content .input-item.full-item {
    width: 100%;
}

.contact-us-page .form-content textarea {
    width: 100%;
    font-family: unset;
    font-size: 16px;
    resize: none;
}

.contact-us-page .form-content .common-button {
    margin: 0 auto;
    margin-top: 20px;
    border: none;
    background: transparent;
    outline: none;
}

.contact-us-page .form-content .common-button.dot a::after {
    margin-left: 80px;
}

.load-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
}

.load-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.load-effect div {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: load 2.08s linear infinite;
}

.load-effect div span {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color);
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(45deg);
    }

    50% {
        opacity: 1;
        -webkit-transform: rotate(160deg);
    }

    62% {
        opacity: 0;
    }

    65% {
        opacity: 0;
        -webkit-transform: rotate(200deg);
    }

    90% {
        -webkit-transform: rotate(340deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }

}

.load-effect div:nth-child(1) {
    -webkit-animation-delay: 0.2s;
}

.load-effect div:nth-child(2) {
    -webkit-animation-delay: 0.4s;
}

.load-effect div:nth-child(3) {
    -webkit-animation-delay: 0.6s;
}

.load-effect div:nth-child(4) {
    -webkit-animation-delay: 0.8s;
}


body.wfEditorMode a.wfEditorMode {
    display: block !important;
    position: relative !important;
    z-index: 9999 !important;
    width: max-content !important;
    height: 1.3em !important;
    min-height: auto !important;
    line-height: 1.3em !important;
    padding: 0 0.5em !important;
    margin-top: -1.3em !important;
    background-color: #fff !important;
    color: #99ccff !important;
    transform: translateY(100%);
    border-radius: 0 !important;
}

body.wfEditorMode a.wfEditorMode:hover {
    display: block !important;
    position: relative !important;
    z-index: 9999 !important;
    width: max-content !important;
    height: 1.3em !important;
    min-height: auto !important;
    line-height: 1.3em !important;
    padding: 0 0.5em !important;
    margin-top: -1.3em !important;
    background-color: #fff !important;
    color: #99ccff !important;
    transform: translateY(100%);
    border-radius: 0 !important;
}

a.wfEditorMode {
    display: none !important;
}

a.wfEditorMode::after,
a.wfEditorMode::before {
    display: none;
}