/*页面头部*/
.header {
    margin-top: 10px;
    min-width: 768px;
    width: 60%;
    margin: 0 auto;
    height: 100px;
}

/*logo*/
.header .logo {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.header .logo .logo-item {
    width: 320px;
    height: 90px;
}

.header .logo .logo-item .logo-1 {
    width: 160px;
    height: 90px;
    border-radius: 10px;
}

.header .logo .logo-item a {
    float: left;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
}

.header .logo .logo-item .logo-2 {
    width: 100px;
    height: 50px;
    margin: 20px 0 20px 40px;
    line-height: 50px;
    text-align: center;
    border-radius: 10px;
    background-color: #FF838B;
}

.header .logo .logo-item .logo-2:hover {
    background-color: #FF6767;
}


/*搜索框*/
.header .logo .search {
    height: 30px;
    padding: 35px 0 25px 10px;
}

.header .logo .search input {
    width: 200px;
    height: 30px;
    float: left;
    padding: 5px 0 5px 5px;
    box-sizing: border-box;
    outline: none;
    border-right: none;
    border: 1px solid #E4E3E3;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.header .logo .search button {
    width: 80px;
    height: 30px;
    float: left;
    border: none;
    color: #FFFFFF;
    outline: none;
    background-color: #999999;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.header .logo .search button:hover {
    background-color: #FF6767;
}

/*导航条*/
.nav-box {
    min-width: 768px;
    width: 60%;
    margin: 0 auto;
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-box .nav {
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    border-top: 1px solid #FF5E52;
}

.nav-box .nav .nav_item {
    flex-grow: 1;
    max-width: 150px;
    position: relative;
}

.nav-box .nav .nav_item::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #FF5E52;
    ;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all .5s;
}

.nav-box .nav .nav_item:hover::after {
    left: 0;
    width: 100%;
}

.nav-box .nav a {
    font-weight: 600;
    font-size: 18px;
    font-family: "幼圆";
    color: #333;
    transition: all .3s;
}

.nav-box .nav a:hover {
    color: #FF6767;
}

.nav-box .nav .nav_item .subnav {
    visibility: hidden;
    background-color: #F8F8F8;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

}

.nav-box .nav .nav_item:hover .subnav {
    visibility: visible;
}


/*页面主题*/
.main {
    height: 2600px;
    min-width: 768px;
    width: 60%;
    margin: 10px auto;
}

/*swiper*/
.main .swiper-container {
    width: 100%;
    height: 90px;
    cursor: pointer;
}

.main .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.main .vagetables {
    height: 2500px;
    border-bottom: 1px solid #EDEDED;
}

.main .vagetables .vage-sub {
    width: 100%;
    margin-top: 20px;
    display: flex;
}

.main .vagetables .vage-sub h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18%;
    text-align: center;
    background-color: #F8F8F8;
    border: 0.5px solid #EEEEEE;
    color: #666666;
    font-size: 22px;
    font-weight: 500;
}

.main .vagetables .vage-sub ul {
    width: 82%;
    display: flex;
    flex-wrap: wrap;
}

.main .vagetables .vage-sub li {
    flex-grow: 1;
    width: 16.3%;
    height: 70px;
    text-align: center;
    line-height: 70px;
}

.main .vagetables .vage-sub a {
    height: 100%;
    color: #333333;
    background-color: #FFFFFF;
    border: 0.5px solid #EEEEEE;
    box-sizing: border-box;
    transition: all .8s;
}

.main .vagetables .vage-sub a:hover {
    color: #FFFFFF;
    background-color: #FF6767;
    border-top: 10px solid #63C5F2;
    font-weight: 600;
}





/*页面底部*/
.footer {
    min-width: 768px;
    width: 60%;
    margin: 0 auto;
    height: 120px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-txt {
    width: 50%;
}

.footer .footer-txt .txt1 {
    margin: 30px 0 30px 0;
    display: flex;
    justify-content: space-between;
}

.footer .footer-txt .txt1 a {
    font-size: 14px;
    color: #666666;
}

.footer .footer-txt .txt1 a:hover {
    color: #FF6767;
    font-weight: 600;
    text-decoration: underline;
}

.footer .footer-txt .txt2 {
    margin: 30px 0 20px 0;
    font-size: 14px;
    color: #666666;
}

.footer .footer-pic {
    width: 25%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-pic img {
    width: 90px;
    height: 90px;
}

.footer .footer-pic .pic-a {
    width: 90px;
}

.footer .footer-pic .pic-b {
    width: 90px;
}

.footer .footer-pic span {
    color: #666666;
    font-size: 15px;
    display: block;
    text-align: center;
}

.button {
    width: 60px;
    height: 60px;
    position: fixed;
    background-color: #EBEBEB;
    right: 200px;
    bottom: 20px;
    border-radius: 50%;
}

.button a {
    width: 100%;
    height: 100%;
}

.button img {
    position: relative;
    bottom: 35px;
    right: 12px;
}

.button:hover {
    opacity: .8;
}

@media only screen and (max-width: 1400px) {
    .button {
        right: 80px;
    }
}

@media only screen and (max-width: 1200px) {
    .button {
        right: 10px;
    }
}