/* @font-face {
    font-family: 'Helvetica';
    src: url(../css/14459.ttf);
} */

html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, "Microsoft YaHei", 微软雅黑, sans-serif;
    /* font-family: "Helvetica Neue", "Helvetica", "Microsoft YaHei", "Arial", "STXihei", "sans-serif"; */
    height: auto;
    min-height: 100vh;
    width: 100%;
    background: #f5f6fb;
    box-sizing: border-box;
    /* overflow: hidden; */
    position: relative;
}

body::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 5px;
    background: #ddd;
}

body::-webkit-scrollbar-thumb {
    background: #97928a;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

p {
    margin: 0;
}

img {
    line-height: 0;
    font-size: 0;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    height: 95px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    /* animation: fadeDown_In 1s ease; */
    /* position: fixed;
    top: 0; */
    background: #fff;
}

header .container {
    width: min(95%, 1200px);
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container {
    margin: 0 auto;
    width: min(95%, 1200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* .section02{
    padding-bottom: 280px;
} */

.section01 {
    min-height: calc(100vh - 95px - 245px);
    min-height: 579px;
    /* height: calc(100vh - 95px - 245px); */
    /* height: auto; */
    padding: 0;
}

section .container {
    margin: 0 auto;
    padding: 20px 0;
    width: min(95%, 1200px);
    height: 100%;
    display: flex;
    box-sizing: border-box;
    position: relative;
    justify-content: flex-start;
}

/* 視覺 */
.main {
    text-align: center;
    animation: fadeDown_In 1s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: center;
}

.card {
    margin-bottom: 20px;
    border-radius: 15px;
    box-sizing: border-box;
    border: 2px solid transparent;
    width: min(18vw, 220px);
}

.card img {
    width: 100%;
}

.card:hover {
    animation: card .4s ease forwards;
}

@keyframes card {
    0% {}

    50% {
        filter: brightness(1.17);
    }

    100% {
        filter: brightness(1.05);
    }
}

.card img {
    display: block;
}



@keyframes fadeDown_In {
    0% {
        margin-top: -40px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

/* menu */
.menuBox {
    position: fixed;
    right: 1.2vw;
    top: 150px;
    z-index: 9;
}

.menu {
    width: 68px;
    height: 68px;
    background: linear-gradient(#5980f6 8%, #6f93f8);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .4s;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 2px 1px 3px rgba(0, 0, 0, .3);

}

.menu:hover {
    /* filter: brightness(1.1); */
    animation: menu .4s forwards;
    transform: translateX(-5px);
}

@keyframes menu {
    0% {}

    50% {
        filter: brightness(1.1);
    }

    100% {
        filter: brightness(1);
    }
}

.menu img {
    margin-bottom: 5px;
}

.menu span {
    font-size: .75rem;
    color: #fff;
}

.logo {
    margin: 0 0 10px 0;
    width: 324px;
    max-width: 324px;
    transition: .2s;
}


.search:hover img {
    filter: brightness(1.1);
}

.titleBox {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.back {
    width: 172px;
    height: 42px;
    background: linear-gradient(#5980f6 8%, #6f93f8);
    position: absolute;
    left: 0;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: .2s;
}

.back span {
    margin-left: -5px;
}

.arrow {
    margin-right: 15px;
    transition: .4s;
}

.back:hover .arrow {
    transform: translateX(-3px);
}

h2.title {
    color: #000;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

p.title.tutorial {
    line-height: 36px;
    font-size: 1.08rem;
}

.inputContent {
    background: #fff;
    width: 100%;
    border-radius: 8px;
    padding: 50px 15px;
    box-shadow: 0 0 6px rgba(95, 95, 95, .2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

.inputBox {
    display: inline-block;
    width: 500px;
    margin-bottom: 10px;
}

.input_grid {
    display: grid;
    grid-template-columns: auto 70%;
    text-align: right;
    margin-bottom: 15px;
}

.input_grid label {
    font-size: 1.05rem;
    vertical-align: middle;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding-right: 8px;
    color: #2c2723;
}

.input_grid input,
.input_grid select {
    color: #333f2e;
    font-size: 1rem;
    display: inline-block;
    outline: none;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #dbdbdb;
    background: #fafafa;
    padding: 0 15px;
    vertical-align: middle;
    box-sizing: border-box;
    width: 100%;
    line-height: 40px;
}

.input_grid input::placeholder,
.input_grid select option::placeholder {
    color: #d2cfc7;
    font-size: 1rem;
    line-height: 0;
}

.upload,
.prove {
    width: 100%;
    height: 40px;
    position: relative;
}

.uploadBtn {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 75%;
    background: #eeeeee;
    border: 1px solid #999;
    padding: 0 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 3px;
    font-size: .95rem;
}

.proveCode {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px #000 solid;
    height: 75%;
    cursor: pointer;
}

.submit {
    color: #fff;
    background: linear-gradient(#5980f6 8%, #6f93f8);
    width: 200px;
    height: 58px;
    font-size: 1.1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin: 0 auto;
}

.submit:hover {
    filter: brightness(1.1);
}

.remind {
    font-size: .9rem;
}

/* footer */
footer {
    text-align: center;
    color: #a4acb4;
    line-height: 50px;
    font-size: .85rem;
    width: 100%;
    background: #464853;
    /* position: absolute; */
    bottom: 0;
}

footer .container {
    width: min(95%, 1200px);
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 15px 0 0;
}

.footerTop {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.footerTop02 {
    display: flex;
    justify-content: space-evenly;
    justify-content: center;
}

.footerLine {
    width: 100%;
    height: 1px;
    background: #76798c;
    margin: 10px 0;
}

.footerLis {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
    pointer-events: none;
}

.footerLis img {
    margin-bottom: 5px;
}

.footerLis span {
    line-height: 1.05rem;
    color: #fff;
}

.footerLis span.cn {
    font-size: .75rem;
}

.footerLis span.en {
    font-size: .65rem;
    text-transform: uppercase;
    color: #888;
}

.copyright {
    width: 100%;
    height: 40px;
    display: flex;
    background: #000;
    align-items: center;
    justify-content: center;
}

.copyright p {
    color: #fff;
    font-size: .8rem;
    line-height: 0;
}

/* RWD */

@media screen and (min-width: 1650px) {
    .container {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1500px) {}

#pages {
    text-align: center;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #5980f6 !important;
}

.searchstyle table {
    width: 500px;
    text-align: center;
}

table th,
table td {
    padding: 10px 0;
}

.remark {
    cursor: pointer;
}

/* announcement pop up window */
.announcement-box {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    width: 100%;
    height: 100%;
}

.announcement-box .wrap-bg {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.announcement-box .wrap {
    position: relative;
    z-index: 100000;
    max-width: 90%;
    max-height: 90%;
}

.announcement-box .wrap .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
}

.announcement-box .wrap a {
    display: block;
}

.announcement-box .wrap .img {
    max-height: 100%;
    max-width: 100%;
}

[v-cloak] {
    display: none;
}