@charset "utf-8";
@import url("../fonts/iconfont/iconfont.css");

:root {
    --themeColor: #80d8d0;
    --textColor: #333;
    --lightColor: #f3af7d;
    --font-size: 16px;
    --font-size-36-title: 36px;
    --font-size-72: 72px;
    --font-size-60: 60px;
    --font-size-48: 48px;
    --font-size-42: 42px;
    --font-size-36: 36px;
    --font-size-32: 32px;
    --font-size-30: 30px;
    --font-size-28: 28px;
    --font-size-26: 26px;
    --font-size-24: 24px;
    --font-size-22: 22px;
    --font-size-20: 20px;
    --font-size-18: 18px;
    --box-margin100: 100px;
    --box-margin80: 80px;
    --box-margin50: 50px;
    --box-margin40: 40px;
    --box-margin30: 30px;
    --box-margin20: 20px;
    --box-margin10: 10px;

    --home-box-padding: 70px;

    --site-primary: #7fd7d4;
    --site-primary-deep: #43b6b8;
    --site-accent: #ffb57c;
    --site-ink: #1e3340;
    --site-text: #5f7280;
    --site-line: rgba(113, 193, 191, 0.18);
    --site-bg: #f7fbfb;
    --site-shadow: 0 22px 60px rgba(44, 111, 121, 0.12);
    --site-radius: 28px;
    --site-container: min(1280px, calc(100vw - 40px));
}

body {
    font-family: "SHS", "PingFang SC", "Microsoft YaHei Regular", "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, sans-serif;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body {
    width: 100%;
    min-width: 320px;
}

body {
    line-height: 1.5;
    background-color: #f1f1f1;
    font-size: var(--font-size);
}

ol,
ul,
li {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.shs {
    font-family: "SHS";
}

.themeColor {
    color: var(--themeColor) !important;
}

.themeBgColor {
    background-color: var(--themeColor) !important;
}

.textColor {
    color: var(--textColor) !important;
}

.lightColor {
    color: var(--lightColor) !important;
}

.clear:after,
.clear::before {
    content: "";
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

.hide {
    display: none !important;
}

.container {
    width: 100%;
    padding: 0 0;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    background-color: #fff;
}

.main {
    padding: 0 4%;
    box-sizing: border-box;
}

.main2 {
    padding: 1px 4%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    height: 100%;
}

.imageAll {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.3s all;
}

.circle {
    border-radius: 50%;
}

.themeButton {
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #fff;
    background-color: var(--themeColor);
    font-size: 16px;
    text-align: center;
    border-radius: 40px;
    cursor: pointer;
    border: none;
}

.themeButton:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .imageAll {
        width: auto;
        max-width: 100%;
        display: block;
        height: auto;
        /*margin: 20px auto 0 auto;*/
    }
}

/*省略号*/

.over {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.over2 {
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -o-box;
    display: box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.over3 {
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -o-box;
    display: box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.over4 {
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -o-box;
    display: box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.flex,
.flex-b {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: space-between;
}

.flex-c {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: center;
}

.flex-a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: space-around;
}

.flex-e {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex-s {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.p30 {
    padding: 30px;
}

.p20 {
    padding: 20px;
}

.p10 {
    padding: 10px;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

.border-bottom {
    border-bottom: 1px solid #eee;
}

.border {
    border: 1px solid #eee;
}

.border-bottom-none {
    border-bottom: none;
}

.bgWhite {
    background-color: #fff;
}

.pointer,
.spic {
    cursor: pointer;
}

/*分页样式*/
.mypage {
    width: auto;
    height: 40px;
    overflow: hidden;
    clear: both;
    text-align: center;
    margin: 40px auto 0 auto;
}

.mypage .pagination {
    display: flex;
    justify-content: center;
    align-items: center;

}

.mypage li {
    min-width: 10px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}

.mypage li a,
.mypage li span {
    width: auto;
    min-width: 32px;
    text-align: center;
    display: block;
    color: #888888;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 15px;
    padding: 5px 8px;
}

.mypage li a:hover,
.mypage li.disabled span:hover {
    color: #fff;
    background-color: var(--themeColor);
}

.mypage li.active span,
.mypage li.active a {
    color: #fff;
    background-color: var(--themeColor);
}

.mypage li:last-child {
    margin-right: 0;
}

.layui-form-select dl dd.layui-this {
    background-color: var(--themeColor);
}

.layui-laydate .layui-this {
    background-color: var(--themeColor) !important;
}

/*空页提示*/
.empty {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.empty img {
    display: block;
    margin: 0 auto;
}

.empty p {
    color: #666;
    font-size: 14px;
}

.home-header {
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.8);
    height: 80px;
    line-height: 80px;
}


 .site-container {
    width: var(--site-container);
    margin: 0 auto;
}

.home-logo {
    text-align: left;
    width: 113px;
}

.nav-toggle {
    width: 30px;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
    color: #555;
    transition: all .3s;
    display: none;
}

.nav-toggle.active {
    /*margin-right: 10px;*/
    width: 30px;
    height: 30px;
    transform: translate(15px, 15px);
    z-index: 999;
    position: absolute;
    right: 30px;
    top: 10px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 20px;
    display: block;
    margin: 5px 0;
    transition: all .3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(135deg);
}

.nav-toggle.active span:nth-child(2) {
    display: none;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-135deg);
    position: absolute;
    top: 0px;
}

.nav-toggle.active span {
    background-color: var(--themeColor);
}

.menu {
    display: none;
}

.layui-btn-themeColor {
    background-color: var(--themeColor);
}

.layui-btn-themeColor.layui-border-red {
    background-color: #fff;
    border: 1px solid var(--themeColor);
    color: var(--themeColor);
}

.layui-layer-page .layui-layer-content {
    border-radius: 10px;
}

.layui-layer {
    border-radius: 10px !important;
}

.header-navs .list>li>a.site-nav__cta {
    width: 120px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-color: var(--lightColor);
    color: #fff;
    border-radius: 22px;
}

.header-navs .list>li>a.site-nav__cta:hover {
    color: #fff;
    opacity: 0.8;
}


.header-navs {
    height: 100%;
    line-height: 80px;
}

.header-navs .list {
    height: 100%;
}

.header-navs .list>li {
    padding: 0 var(--box-margin10);
    font-size: 18px;
    color: #222;
    font-family: "SHS";
    position: relative;
    /*font-weight: bold;*/
    margin: 0 var(--box-margin20);
    height: 80px;
    line-height: 80px;
    text-align: center;
}

.header-navs .list>li.active::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    background-color: var(--themeColor);
}

.header-navs .list>li:hover a,
.header-navs .list>li.active a {
    color: var(--themeColor);
}

.header-navs .list>li>a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #222;
}

.home-header.active {
    background-color: #fff;
}

.home-header>.flex {
    border-bottom: 0;
    height: 100%;
}


.site-footer {
    margin-top: 0;
    color: #333;
    background: #e9e9e9;
}

.site-footer__inner {
    display: flex;
    align-items: flex-start;
    gap: 78px;
    padding: 48px 0 34px;
}

.site-footer__brand {
    flex: 0 0 248px;
    max-width: 248px;
    padding-right: 68px;
    border-right: 1px solid #d4d4d4;
    text-align: center;
}

.site-footer__brand-logo {
    display: flex;
    justify-content: center;
}

.site-footer__brand-logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.site-footer__brand-name {
    margin-top: 14px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.site-footer__brand-en {
    margin-top: 4px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.site-footer__qr {
    width: 110px;
    margin: 18px auto 0;
    padding: 8px 4px 4px;
    border: 1px solid #c8c8c8;
    background: #e9e9e9;
}

.site-footer__links {
    flex: 1;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.95fr 0.8fr 0.8fr;
    column-gap: 48px;
    row-gap: 24px;
}

.site-footer__column {
    min-width: 0;
}

.site-footer__group + .site-footer__group {
    margin-top: 30px;
}

.site-footer__column h4,
.site-footer__group h4 {
    margin: 0 0 18px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.site-footer__column a,
.site-footer__group a {
    display: block;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus,
.site-footer__group a:hover,
.site-footer__group a:focus {
    color: var(--themeColor);
}

.site-footer__bottom {
    border-top: 1px solid #d6d6d6;
    text-align: center;
    background: #ececec;
}

.site-footer__copyright {
    margin: 0;
    padding: 20px 0 18px;
    color: #7c7c7c;
    font-size: 15px;
    line-height: 1.6;
}

.site-footer__copyright a {
    color: inherit;
}
.site-footer__copyright a:hover{
    color: var(--themeColor);
}

@media (max-width: 1200px) {
    .site-footer__inner {
        gap: 48px;
    }

    .site-footer__brand {
        flex-basis: 220px;
        max-width: 220px;
        padding-right: 42px;
    }

    .site-footer__links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 30px;
    }
}

@media (max-width: 991px) {
    .site-footer__inner {
        flex-direction: column;
        gap: 34px;
        padding: 5px  0;
    }
    .site-footer__brand {
        width: 100%;
        max-width: none;
        padding-right: 0;
        padding-bottom: 0;
        border-right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-footer__links {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 28px;
    }
}

@media (max-width: 640px) {
    .site-footer__links {
        grid-template-columns: 1fr;
        row-gap: 24px;
        display: none;
    }

    .site-footer__column h4,
    .site-footer__group h4 {
        margin-bottom: 14px;
        font-size: 17px;
    }

    .site-footer__column a,
    .site-footer__group a {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .site-footer__copyright {
        padding: 16px 0;
        font-size: 13px;
    }
}

.site-fix-bar {
    position: fixed;
    right: 0;
    bottom: 88px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    display: none;
}

.site-fix-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 55px;
    padding: 8px 5px;
    background: linear-gradient(180deg, #7ddbd5 0%, #69cdc7 100%);
    color: #fff;
    text-align: center;
}

.site-fix-item:hover,
.site-fix-item:focus {
    color: #fff;
}

.site-fix-item + .site-fix-item:not(.site-fix-item--top) {
    border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.site-fix-item--assessment {
    cursor: default;

}

.site-fix-item--top {
    margin-top: 18px;
    background: linear-gradient(180deg, #ffbb86 0%, #f2a15f 100%);

}

.site-fix-item__icon {
    width: 28px;
    height: auto;
    margin-bottom: 5px;
}

.site-fix-item__text {
    font-size: 12px;
    line-height: 1.45;
    white-space: nowrap;
}

.site-fix-item__panel {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateX(100%) translateY(-50%);
    min-width: 176px;
    height: 52px;
    padding: 0 18px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, #7ddbd5 0%, #69cdc7 100%);
    color: #fff;
    font-size: 15px;
    line-height: 52px;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(90, 196, 188, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

.site-fix-item:hover .site-fix-item__panel,
.site-fix-item:focus .site-fix-item__panel {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .site-fix-bar {
        display: none;
    }
}


@media screen and (max-width: 1400px) {
    :root {
        --font-size: 14px;
        --font-size-36-title: 26px;
        --font-size-72: 44px;
        --font-size-60: 40px;
        --font-size-48: 34px;
        --font-size-42: 32px;
        --font-size-36: 30px;
        --font-size-32: 28px;
        --font-size-30: 26px;
        --font-size-28: 24px;
        --font-size-26: 22px;
        --font-size-24: 20px;
        --font-size-22: 18px;
        --font-size-20: 16px;
        --font-size-18: 16px;
        --box-margin100: 65px;
        --box-margin80: 55px;
        --box-margin50: 35px;
        --box-margin40: 30px;
        --box-margin30: 25px;
        --box-margin20: 15px;
        --box-margin10: 8px;
        --home-box-padding: 40px;
    }

    .site-footer .site-footer-menu {
        gap: 3%;
        width: 80%;
    }

    .header-navs .list>li>a.site-nav__cta {
        width: 100px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}

@media screen and (min-width: 1201px) {
    .layui-container {
        width: 100%;
        padding: 0;
    }

}

@media screen and (max-width: 1200px) {
    .header-navs .list>li {
        padding: 0 10px;
        margin: 0 5px;
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --font-size: 14px;
        --font-size-36-title: 24px;
        --font-size-72: 40px;
        --font-size-60: 36px;
        --font-size-48: 32px;
        --font-size-42: 30px;
        --font-size-36: 28px;
        --font-size-32: 26px;
        --font-size-30: 24px;
        --font-size-28: 22px;
        --font-size-26: 20px;
        --font-size-24: 18px;
        --font-size-22: 16px;
        --font-size-20: 16px;
        --font-size-18: 16px;
        --box-margin100: 60px;
        --box-margin80: 50px;
        --box-margin50: 30px;
        --box-margin40: 25px;
        --box-margin30: 20px;
        --box-margin20: 15px;
        --box-margin10: 8px;
        --home-box-padding: 40px;
    }

    .header-navs {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .home-header.main2 {
        /*padding: 0;*/
        height: 70px;
        line-height: 70px;
    }

    .home-header .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 99;
    }

    .home-header .menu .list {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .home-header .menu .list li {
        width: 100%;
        text-align: center;
        padding: 0;
        line-height: 55px;
    }

    .home-header .menu .list li a {
        display: block;
    }

    .home-header .menu li.active a,
    .home-header .menu .list li a:hover {
        color: var(--themeColor);
    }

    .home-header .menu .layui-icon-close {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        position: absolute;
        right: 20px;
        top: 20px;
        line-height: 18px;
    }

    .home-header .header-list {
        flex: 1;
    }

    .home-logo {
        height: 60px;
        width: auto;
    }

    .home-logo img.imageAll {
        height: 60px;
        width: auto;
    }
}

@media screen and (max-width:600px) {
    nav div {
        width: 80%;
        padding: 12px 0;
        margin: 0 auto;
        text-align: center;
    }

    nav div img {
        height: 40px;
        margin-top: 0;
    }

    section {
        width: 100%;
        overflow: hidden;
    }

    section .title {
        font-size: 11px;
    }

    section .title span {
        font-size: 16px;
    }

    section .box {
        width: 100%;
        margin: 8px auto;
    }

    section .box .boxTitle {
        font-size: 14px;
        padding-left: 12px;
    }

    section .box .boxitem {
        flex-wrap: wrap;
        align-items: flex-end;
    }

    section .box .boxitem .single,
    section .box .boxitem .check {
        width: 90%;
        margin: 6px auto;
        text-align: center;
    }

    section .box .boxitem .inpBox {
        width: 74%;
    }

    .wids {
        width: 75%;
    }

    .leftBox {
        width: 70%;
    }

    section .box .boxitem {
        font-size: 12px;
        width: 90%;
        margin: 0 auto;
    }

    .fsz {
        font-size: 14px !important;
    }

    .btn {
        padding: 8px 40px !important;
        font-size: 12px !important;
        margin: 15px auto !important;
    }

    .bgc-center {
        width: 80%;
        padding: 12px;
        font-size: 12px;
        line-height: 25px;
        overflow: auto;
        height: 60vh;
    }

    .notice_title {
        font-size: 14px;
    }

    .notice_btn div {
        padding: 4px 18px !important;
        margin: 15px !important;
        border-radius: 24px !important;
        font-size: 12px !important;
    }

    .container {
        max-width: 600px !important;
        width: 80% !important;
    }

}

.ejectQm .qmClose {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #fff;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    :root {
        --font-size: 14px;
        --font-size-36-title: 20px;
        --font-size-72: 36px;
        --font-size-60: 32px;
        --font-size-48: 30px;
        --font-size-42: 28px;
        --font-size-36: 26px;
        --font-size-32: 22px;
        --font-size-30: 20px;
        --font-size-28: 18px;
        --font-size-26: 17px;
        --font-size-24: 16px;
        --font-size-22: 15px;
        --font-size-20: 15px;
        --font-size-18: 15px;
        --box-margin100: 50px;
        --box-margin80: 45px;
        --box-margin50: 25px;
        --box-margin40: 20px;
        --box-margin30: 15px;
        --box-margin20: 10px;
        --box-margin10: 5px;
        --home-box-padding: 30px;
    }

    .mypage li {
        margin-right: 10px;
    }

    .themeButton {
        height: 36px;
        line-height: 36px;
    }

    .main2 {
        padding: 0 15px;
    }

    .home-logo {
        height: 50px;
        width: auto;
    }

    .home-logo img.imageAll {
        height: 50px;
        width: auto;
    }

    .site-footer .site-footer-nav {
        min-height: 1px;
        padding: 24px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .site-footer .site-footer-logo {
        width: 150px;
    }

    .site-footer .site-footer-menu {
        justify-content: flex-start;
        gap: 12px 18px;
        display: none;
    }

    .site-footer__qr{
        height: 110px;
        box-sizing: border-box;
        margin: 0;
        background-color: #fff;
        padding: 4px;
    }
}
