@font-face {
    font-family: YUNQI;
    src: url(../fonts/inter/Inter-Regular.otf) format('truetype');
}

@font-face {
    font-family: YUNQI-BOLD;
    src: url(../fonts/inter/Inter-Bold.otf) format('truetype');
}

:root {
    --default-color: #4AD1CD;
    --default-hover-color: #00B6CE;
    --default-font-family: YUNQI, sans-serif;
    --default-font-family-bold: YUNQI-BOLD, sans-serif;

    --share-feed-color: #f68423;
    --share-reddit-color: #ef0e20;
    --share-youtube-color: #FF2323;
    --share-twitter-color: #000000;
    --share-facebook-color: #1A77F2;
    --share-linkedin-color: #0C66C2;
}

/****** lg ******/
@media (min-width: 1200px) {
}

/****** md ******/
@media (min-width: 992px) and (max-width: 1199px) {
}

/****** sm ******/
@media (min-width: 768px) and (max-width: 991px) {
}

/****** xs ******/
@media (max-width: 767px) {
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--default-font-family) !important;
    position: relative;
}

p, span {
    font-size: 14px;
}

p:last-child {
    margin-bottom: 0 !important;
}

[class^="neo-"] p, [class^="neo-"] span {
    font-size: 14px;
    line-height: 24px;
}

ul li {
    list-style-type: none;
}

form input, form select {
    height: 30px;
}

textarea.form-control {
    resize: none;
    height: 160px;
}

button {
    outline: none !important;
}

a, a:focus {
    text-decoration: none;
    cursor: pointer;
    color: var(--default-color);
}

a:hover {
    text-decoration: none;
    color: var(--default-hover-color);
}

.btn-normal:focus, .btn-normal {
    color: #fff;
}

input:focus {
    outline: none;
}

.clear {
    clear: both;
}

label {
    cursor: pointer;
    margin-bottom: 0
}

label.control-label {
    margin-top: 7px;
}

input[type="radio"]::before {
    width: 100%;
    height: 100%;
    line-height: 18px;
    text-align: center;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    border: 1px solid #c7dfe4;
    border-radius: 50%;
}

input[type="radio"]:checked::before {
    content: "\2713";
    background-color: #0fb2c6;
    border: 1px solid #0fb2c6;
    color: white;
    font-size: 12px;
    font-weight: bolder;
}

input[type="checkbox"]::before {
    width: 100%;
    height: 100%;
    line-height: 18px;
    text-align: center;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    border: 1px solid #c7dfe4;
}

input[type="checkbox"]:checked::before {
    content: "\2713";
    background-color: white;
    border: 1px solid var(--default-color);
    color: var(--default-color);
    font-size: 12px;
    font-weight: bolder;
}

/* 视频播放 */
.video {
    /*display: inline-block;*/
    cursor: pointer;
    position: relative;
}

/* 播放按钮样式 1 */
.video .player {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url(../img/video/play-youtube.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px;
    position: absolute;
    top: 0;
    left: 0;
    transition: background-size 0.1s;
}

.video .player:hover {
    background-size: 88px;
}

/* 播放按钮样式 2 */
.video .play-button {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url(../img/video/play.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s;
}

.video .play-button:hover {
    background-size: 96px;
    background-color: rgba(0, 0, 0, 0);
}

.video img {
    width: 100%;
    display: block;
}

#popModal {
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 #d6d6d6;

    display: none;
    bottom: unset;
}

#popModal .modal-header {
    height: 100px;
    background-color: #175f67;
    border-bottom: unset;
}

#popModal .modal-header .modal-title {
    line-height: 70px;
    font-size: 30px;
    font-weight: bolder;
    color: white;
    text-align: center;
}

#popModal .modal-header .close {
    color: white;
}

#popModal .modal-body .row {
    margin-bottom: 15px;
}

#popModal .modal-body .row:last-child {
    margin-bottom: 0;
}

#popModal .modal-footer .btn {
    width: 230px;
    height: 50px;
    line-height: 50px;
    color: white;
    background-color: var(--default-color);
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 0;
}

/* 圣诞节底部banner开始 */
.christmas-banner {
    height: 105px;
    background-image: url(../img/bottom-banner-christmases.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #4F7356;
    background-size: auto 100%;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
}

.christmas-banner .container {
    position: relative;
}

.christmas-banner .trail {
    font-size: 18px;
    padding: 5px 32px;
    background-color: #4CD9E1;
    color: #fff;
    border-radius: 5px;
    position: absolute;
    top: 32px;
    right: 12%;
}

.christmas-banner .close-banner {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.christmas-banner .trail:hover {
    background-color: #fff;
    color: #4CD9E1;
}

@media (max-width: 1200px) {
    .christmas-banner {
        height: 90px;
    }

    .christmas-banner .trail {
        top: 28px;
        right: 5%;
    }
}

@media (max-width: 992px) {
    .christmas-banner .container {
        /*width: 100%;*/
    }

    .christmas-banner .trail {
        /*top: 24px;*/
        right: 0;
    }
}

@media (max-width: 768px) {
    .christmas-banner {
        display: none;
    }
}

/* 圣诞节底部banner结束 */

/* 移动端适配调整开始（414-360） */
@media (max-width: 500px) {
    #popModal {
        width: 90%;
        margin-left: -45%;
    }

    #popModal .modal-header {
        height: 90px;
    }

    #popModal .modal-body .row {
        margin-bottom: 10px;
    }
}

/* 移动端适配调整开始（414-360） */
@media (max-width: 414px) {
    p {
        font-size: 14px !important;
    }

    .about-news .container {
        padding: 0 10%;
    }

    .footer-div .container .row {
        width: 100%;
        margin: 0 auto;
    }
}

/* 移动端适配调整结束（414-360） */
