@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

html,
body {
    color: #000;
    font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: underline;
}

ul,
li {
    list-style: none;
}

.main {
    width: 100%;
}

.headerright .checked {
    color: #000;
    font-weight: bold;
}

.header {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15%;
    flex-wrap: wrap;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 2;
    width: 70%;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.headerleft .headerright {
    display: inline-block;
}

.headerleft img {
    height: 40px;
    vertical-align: middle;
}

.headerleft h3 {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.header a{
    text-decoration: none;
}

.headerright a {
    display: inline-block;
    margin: 10px 30px;
    color: #8D8D8D;
}

.headerright button {
    background-color: #000;
    color: #fff;
    padding: 10px 30px;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
}

.content {
    width: 100%;
    margin-top: 85px;
}

.box1 {
    background: linear-gradient( 180deg, #C2D9FF 0%, #FFFFFF 100%);
    padding: 90px 15%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.box1-left {
    width: 50%;
    min-width: 280px;
}

.box1-left h2 {
    font-size: 40px;
    margin: 30px 0;
    word-break: break-word;
}

.box1-left p {
    width: 70%;
    font-size: 22px;
    color: #1A1A1A;
    opacity: .6;
    line-height: 40px;
}

.box1-left img {
    width: 50%;
    min-width: 200px;
    margin: 40px 0;
}

.box1>img {
    width: 40%;
    min-width: 250px;
}

.box2 {
    padding: 30px 6%;
}

.box2>div {
    background-color: #F8F8F8;
    border-radius: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
    justify-content: center;
}

.box2-left {
    width: 30%;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.box2-left div {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 25%;
    background-color: #B6FBFF;
}

.box2-left img {
    /* height: 100%; */
    position: inherit;
    width: 70%;
    max-width: 300px;
}

.box2-right {
    width: 47%;
    min-width: 280px;
    padding-left: 3%;
}

.box2-right h3 {
    font-size: 28px;
    line-height: 40px;
    margin: 20px 0;
}

.box2-right p {
    font-size: 20px;
    line-height: 30px;
    color: #1A1A1A;
    opacity: .6;
}

.box3 {
    padding: 80px 15%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.box3-left {
    width: 50%;
    min-width: 280px;
    text-align: center;
}

.box3-left img {
    height: 110px;
    margin: 25px 0;
}

.box3-left h3 {
    color: #192349;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
}

.box3-left p {
    color: #192349;
    font-size: 20px;
    line-height: 30px;
}

.box3>img {
    width: 25%;
    min-width: 250px;
    margin-left: 3%;
}

.blood-box2 .box2-right,
.rate-box2 .box2-right {
    text-align: right;
}

.blood-box3 h3,
.rate-box3 h3 {
    font-size: 32px;
}

.blood-box3 .box3-left img,
.rate-box3 .box3-left img {
    height: 85px;
}

.rate-box1 {
    background: linear-gradient( 180deg, #FFD8CC 0%, #FFFFFF 100%);
}

.rate-box2 .box2-left div {
    background-color: #FF8B67;
}


.dropdown button {
    background-color: #000;
    color: #fff;
    padding: 10px 30px;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
}

.dropdown:hover button{
    color: #71f9ff;
    box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 35%);
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 10px 30px;
    width: 130px;
}

.dropdown-content {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    visibility: hidden;
    z-index: -1;
    min-width: 280px;
    max-width: 58vw;
    white-space: nowrap;
    background-color: #fff;
    transition: .2s;
    top: 70px;
    opacity: 0;
    max-height: 0;
    display: flex;
    flex-direction: column;
    transform: translateY(-19px);
}

.dropdown-content div{
    margin-bottom: 4px;
}

.dropdown-content a {
    text-decoration: none;
    border-radius: 4px;
    padding: 8px;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 16px;
}

.dropdown-content a:hover {
    background-color: rgba(0,0,0,.05);
}

.dropdown-content a span{
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: .013em;
    font-weight: 400;
    color: rgba(0,0,0,.7);
    margin-right: 8px;
}

.dropdown-content a:hover span{
    color: #000;
}

.dropdown-content a:hover svg path{
    fill: #ff5a7d;
    transition: .2s;
}

.dropdown:hover .dropdown-content,
.dropdown:hover .dropdown-empty {
    opacity: 1;
    overflow: visible;
    visibility: visible;
    z-index: 3;
}

.dropdown:hover .dropdown-content{
    max-height: 500px;
    padding: 16px 0;
    border: 1px solid rgba(0,0,0,.1);
}

.dropdown:hover .dropdown-empty{
    max-height: 12px;
    height: 12px;
}

.dropdown-empty {
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    z-index: -1;
    min-width: 280px;
    max-width: 58vw;
    transition: .2s;
    top: 0;
    /* left: -16px; */
    opacity: 0;
    max-height: 0;
    top: 40px;
    cursor: pointer;
}

.footer {
    background-color: #000;
    display: flex;
    padding: 60px 15%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer>div {
    min-width: 300px;
}

.footer>div>div {
    color: #FFFFFF;
    opacity: .6;
    margin-top: 20px;
    font-size: 17px;
}

.footer img {
    height: 35px;
    vertical-align: middle;
    margin-right: 10px;
}

.footer p {
    margin: 20px 0;
}

.footer a {
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.privacy {
    padding: 4rem;
    color: #000;
 
}

.privacy h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 2rem;
}

.privacy p {
    font-size: 1.1rem;
    line-height: 2rem;
    margin-top: 1rem;
    opacity: .6;
}

.privacy li {
    margin-top: 2rem;
}

.privacy h3 {
    font-size: 2.4rem;
    line-height: 3rem;
    margin: 3rem 0 1rem;
}

.privacy h4 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 2rem 0 1rem;
}

.privacy a {
    color: #000;
    text-decoration: none;
}

.privacy a:hover {
    text-decoration: none;
}

.privacy .bold {
    font-weight: bold;
}

@media screen and (max-width: 640px) {
    .header {
        justify-content: center;
        padding-top: 25px;
    }

    .rate-box1 h2 {
        font-size: 32px;
    }

    .privacy {
        padding: 1rem 2rem;
        color: #000;
    }

    .privacy h1 {
        font-size: 1.8rem;
        line-height: 3rem;
    }

    .privacy p {
        font-size: 1rem;
        line-height: 2rem;
        margin-top: 1rem;
    }

    .blood-box2 .box2-right{
        text-align: center;
    }
    .box1{
        padding: 50px 10%;
    }
}

@media screen and (max-width: 580px){
    .content{
        margin-top: 120px;
    }
}

.content-box{
    visibility: hidden;
}

.dropdown select {
    background-color: #000;
    color: #fff;
    padding: 10px 30px;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
    border: none;
}

.dropdown select:hover {
    color: #71f9ff;
    box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 35%);
}