header .top-wrap {
    background-color: #ffffff;
}
header .top-wrap .logo-box {
    width: 100px;
    height: 80px;
}
header .top-wrap .container {
    align-items: left;
}
header .top-wrap .container .slogan {
    margin-left: 30px;
    font-size: 22px;
}
header .banner {
    width: 100%;
    height: 400px;
    margin: auto;
    /* overflow: hidden; */
}
header nav {
    /* padding: 10px 0; */
    background-color: #ccc;
}
header nav .nav-list {
    display: flex;
}
header nav .nav-list .nav-item {
    flex: 1;
    padding: 16px 0;
    font-size: 18px;
    text-align: center;
}
header nav .nav-list .nav-item.active {
    background-color: #fff;
}
.media-box {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.media-box audio {
    width: 180px;
    height: 40px;
}
.viewpoint-list {
    display: flex;
    flex-wrap: wrap;
}
.viewpoint-list .viewpoint-item {
    flex: 1 1 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    margin-bottom: 30px;
    margin-right: 30px;
}
.viewpoint-list .viewpoint-item:nth-child(3n) {
    margin-right: 0;
}
.viewpoint-list .viewpoint-item .pic-box {
    width: 100%;
    height: 240px;
}
.viewpoint-list .viewpoint-item .detail-box {
    padding: 14px;
    background-color: #f5f5f5;
}
.viewpoint-list .viewpoint-item .detail-box .title {
    font-size: 16px;
    margin-bottom: 10px;
}
.discover-wrap {
    margin-top: 20px;
}
.discover-wrap .video-section video {
    width: 100%;
}
.food-list .food-item {
    display: flex;
    margin-bottom: 30px;
}
.food-list .food-item .pic-box {
    width: 100%;
    flex: 1;
    height: 240px;
}
.food-list .food-item .detail-box {
    flex: 1;
    padding: 24px;
    background-color: #f5f5f5;
}
.food-list .food-item .detail-box .title {
    font-size: 18px;
    font-weight: 450;
    margin-bottom: 10px;
    text-align: center;
}
.food-list .food-item .detail-box .text {
    font-size: 16px;
    font-weight: 300;
    text-indent: 2em;
    line-height: 24px;
}
.custom-list {
    display: flex;
    flex-wrap: wrap;
}
.custom-list .custom-item {
    flex: 1 1 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    margin-bottom: 30px;
    margin-right: 30px;
}
.custom-list .custom-item:nth-child(3n) {
    margin-right: 0;
}
.custom-list .custom-item .pic-box {
    width: 100%;
    height: 240px;
}
.custom-list .custom-item .detail-box {
    padding: 10px 0;
}
.custom-list .custom-item .detail-box .title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}
.form {
    width: 600px;
    margin: auto;
    padding: 20px 30px 10px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
}
.form .form-item {
    margin: 20px 0;
}
.form .form-item.active input,
.form .form-item.active textarea {
    border: 1px solid red;
}
.form .form-item.row-center {
    text-align: center;
}
.form .form-item input,
.form .form-item textarea {
    width: 100%;
    border: 1px solid #aaa;
    font-size: 16px;
    outline: none;
}
.form .form-item input {
    height: 40px;
    padding: 3px 5px;
    line-height: 40px;
}
.form .form-item textarea {
    padding: 5px;
    min-height: 100px;
}
.form .form-item .btn {
    min-width: 100px;
    margin: auto;
    height: 40px;
    border: none;
    border-radius: 16px;
    line-height: 40px;
    font-size: 16px;
    letter-spacing: 2px;
    color: #fff;
    background-color: #205de0;
    outline: none;
    cursor: pointer;
}
.form .form-item .btn:hover {
    background-color: #2867f1;
}
.form .form-item .btn:active {
    background-color: #205de0;
}
.contact .form-bg {
    padding: 60px 0;
    background: linear-gradient(180deg, #c5f0f5, #fff);
}
footer {
    /* margin-top: 40px; */
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background-color: #000;
}
footer a {
    color: #aaa;
}
footer .row:first-child {
    font-size: 18px;
}
footer .row:last-child {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
footer .links {
    margin-left: 20px;
}

/* 媒体查询 */
@media (max-width: 768px) {
    .viewpoint-list .viewpoint-item,
    .custom-list .custom-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .food-list .food-item {
        flex-direction: column;
    }

    .form {
        width: 90%;
    }
}