﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    background: #F8F8F8;
    font-family: Microsoft YaHei;
}

a {
    text-decoration: none;
    display: block;
}

img {
    width: 100%;
    height: 100%;
}

/* 宠西西-首页 */

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.head-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.head-nav>a {
    padding: 8px 10px;
    color: #ffffff;
    font-size: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
}

.head-nav .nav-active {
    border-bottom: 2px solid #ffffff;
}

.head-nav>a:hover {
    border-bottom: 2px solid #ffffff;
}

.logo {
    background: url(../img/logo.png) no-repeat;
    background-size: 100%;
}

.logo a {
    display: block;
    text-indent: -999em;
}

.head-nav>span{
    display: block;
    color: #ffffff;
    margin-left: -25px;
    margin-bottom: -20px;
    margin-right: 20px;
    height: 100%;
    font-size: 28px;
}

.input-box {
    position: relative;
    display: flex;
    width: 22.86%;
}

.input-box input {
    width: 100%;
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.09);
}

.input-box input::-webkit-input-placeholder {
    color: #ffffff;
}

.input-box input:-moz-placeholder {
    color: #ffffff;
}

.input-box input::-moz-placeholder {
    color: #ffffff;
}

.input-box input:-ms-input-placeholder {
    color: #ffffff;
}

.input-box i {
    font-size: 28px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translate(0, -50%);
}

.member {
    position: relative;
    display: flex;
}

.member>a i {
    font-size: 28px;
    color: #ffffff;
}

.member>div {
    position: absolute;
    width: auto;
    right: 0px;
    top: 22px;
    transform: none;
    min-width: 100px;
    display: none;
    max-height: 0;
    transition: max-height .7s;
    /* opacity: 0; */
}

.member:hover>div {
    /* opacity: 1; */
    display: block;
}

.member>div ul {
    background: #fff;
    margin-top: 16px;
    -ms-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
    -o-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
}

.member>div ul:before {
    position: absolute;
    top: 8px;
    right: 7px;
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent #fff transparent;
}

.member>div ul li {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 12px;
    transition: all .3s;
}

.member>div ul li:hover {
    background: #ebeff2;
}

.member>div ul li a {
    padding: 16px 32px;
    white-space: nowrap;
    display: inline-block;
    color: #303233;
    line-height: 1;
    height: auto;
    background: 0 0;
    text-align: center;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 60px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.35);
}

.swiper-pagination-bullet-active {
    background: #ffffff;
}

/* 热门推荐 */

.hot-recommend {
    width: 100%;
    padding: 40px 0 68px 0;
    background: #ffffff;
}

.hot-recommend-box {
    margin: auto;
    display: flex;
    flex-direction: column;
}

.hot-recommend-box>p {
    color: rgba(0, 0, 0, 0.85);
}

.recommend-content {
    display: flex;
}

.recommend-content-1 {
    display: flex;
    font-size: 0;
}

.recommend-content img {
    border-radius: 4px;
}

.recommend-content-1 a {
    position: relative;
    width: 100%;
}

.recommend-content-1 a div {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    padding: 8px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.recommend-content-1 a div p {
    width: 80%;
    margin: auto;
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.recommend-content-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: space-between;
    justify-content: space-between;
}

.recommend-content-2>div a p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 内容部分 */

.page-modules {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.option-column {
    width: 100%;
    padding-bottom: 32px;
    background: #ffffff;
}

.option-column-auto {
    margin: auto;
    display: flex;
    flex-direction: column;
}

.title-img {
    width: 25%;
    margin: auto;
    margin-bottom: 24px;
}

.option-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option-list ul {
    display: flex;
    align-items: flex-end;
}

.option-list ul li {
    list-style: none;
    font-size: 24px;
    margin-right: 40px;
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.drawings-active, .life-active, .health-active {
    position: relative;
    font-size: 30px!important;
}

.drawings-active::before, .life-active::before, .health-active::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px;
    -moz-transform: rotate(180deg) translate(50%, 0);
    -webkit-transform: rotate(180deg) translate(50%, 0);
    -o-transform: rotate(180deg) translate(50%, 0);
    transform: rotate(180deg) translate(50%, 0);
}

.drawings-active {
    color: #F8CC40!important;
}

.drawings-active::before {
    border-color: transparent transparent #F8C72D transparent;
}

.life-active {
    color: #98B094!important;
}

.life-active::before {
    border-color: transparent transparent #98B094 transparent;
}

.health-active {
    color: #F8B597!important;
}

.health-active::before {
    border-color: transparent transparent #F8B699 transparent;
}

.option-list a {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.56);
}

/* 宠物图鉴库 */

.drawings {
    margin: auto;
    margin: 16px auto 24px auto;
    display: none;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
}

.draw-active {
    display: flex;
}

.drawings-item {
    margin-bottom: 24px;
    border-radius: 4px;
}

.drawings-item a {
    display: flex;
    position: relative;
    overflow: hidden;
}

.drawings-item a p {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    padding: 7px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.drawings-item>div {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    text-align: center;
    background: #ffffff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.drawings-item>div p:first-child {
    font-size: 26px;
    color: rgba(0, 0, 0, 0.65);
}

.drawings-item>div p:last-child {
    font-size: 22px;
    color: rgba(0, 0, 0, 0.45);
}

/* 萌宠生活区 */

.life {
    display: none;
    margin: auto;
    margin: 16px auto 24px auto;
    overflow: hidden;
}

.life .swiper-container {
    width: 100%;
}

.lif-active {
    display: flex;
}

.life .swiper-slide>div {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
}

.swiper-button-next, .swiper-button-prev {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.5s;
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}

.swiper-button-prev i, .swiper-button-next i {
    color: #ffffff;
    font-size: 24px;
}

.life .swiper-slide>div a {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.life .swiper-slide>div a img{
    /* height: calc(73.3333%); */
    object-fit: cover;
}

.life .swiper-slide>div a>div {
    display: flex;
    flex-direction: column;
    padding: 12px 8px 15px 8px;
    background: #ffffff;
}

.life .swiper-slide>div a>div p {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.65);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.life .swiper-slide>div a>div>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.life .swiper-slide>div a>div>div>div {
    display: flex;
    align-items: center;
}

.life .swiper-slide>div a>div>div>div:first-child img {
    width: 24px;
    border-radius: 50%;
}

.life .swiper-slide>div a>div>div>div:first-child span {
    margin-left: 8px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
}

.life .swiper-slide>div a>div>div>div:last-child span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
}

.life .swiper-slide>div a>div>div>div:last-child span:last-child {
    margin-left: 30px;
}

.life .swiper-slide>div a>div>div>div:last-child span i {
    margin-right: 2px;
}

/* 健康馆 */

.health-banner {
    margin: 16px auto 24px auto;
    display: flex;
}

.health-banner a {
    display: flex;
    width: 100%;
}

.health-banner img {
    border-radius: 5px;
}

.health {
    display: none;
    margin: auto;
    margin: 16px auto 24px auto;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
}

.heal-active {
    display: flex;
}

.health a {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.health a>img {
    /* height: calc(67.7632%); */
    border-radius: 5px;
    object-fit: cover;
}

.health a>div {
    display: flex;
    flex-direction: column;
    padding: 12px 8px 15px 8px;
    background: #ffffff;
}

.health a>div p {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.65);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.health a>div>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.health a>div>div>div {
    display: flex;
    align-items: center;
}

.health a>div>div>div:first-child img {
    width: 24px;
    border-radius: 50%;
}

.health a>div>div>div:first-child span {
    margin-left: 8px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
}

.health a>div>div>div:last-child span {
    font-size: 16px;
    padding: 5px 13px;
    color: rgba(0, 0, 0, 0.55);
    background: rgba(0, 0, 0, 0.09);
    border-radius: 16px;
}

.health a>div>div>div:last-child span:last-child {
    margin-left: 30px;
}

/* 宠西西-宠物百科首页 */

.encyclopedia {
    width: 60%;
    margin: auto;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.encyclopedia-contant {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.encyclopedia-item {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.encyclopedia-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #F8C10E;
}

.encyclopedia-title span {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    background: #F8C10E;
    color: #ffffff;
}

.encyclopedia-title a {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.56);
}

.encyclopedia-title a:hover {
    color: #F8C10E;
}

.encyclopedia-atlas {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.encyclopedia-atlas-item {
    width: 16%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.encyclopedia-atlas-item a {
    display: flex;
    position: relative;
    overflow: hidden;
}

.encyclopedia-atlas-item a p {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    padding: 7px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.encyclopedia-atlas-item>div {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    text-align: center;
    background: #ffffff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.encyclopedia-atlas-item>div p:first-child {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.65);
}

.encyclopedia-atlas-item>div p:last-child {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.45);
}

/* 宠西西-品种图鉴 */

.header-relative {
    position: relative;
    background: #F8C10E;
}

.drawing-banner {
    width: 100%;
    display: flex;
    font-size: 0;
}

.menu {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.menu-tab-box {
    width: 100%;
    padding: 56px 0 36px 0;
    background: #ffffff;
}

.menu-tab {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    border-radius: 60px;
    color: rgba(0, 0, 0, 0.85);
    background: rgba(0, 0, 0, 0.09);
    cursor: pointer;
}

.menu-tab-item i {
    font-size: 32px;
    font-weight: bold;
}

.menu-tab-item span {
    font-size: 26px;
    margin-left: 16px;
}

.menu-tab-item-active {
    color: #ffffff;
    box-shadow: 0px 3px 6px rgba(245, 201, 32, 0.5);
    background: linear-gradient(180deg, #F4C824 0%, #FFD503 100%);
}

.menu-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.menu-filtration-box {
    width: 100%;
    background: #ffffff;
    display: flex;
    padding-bottom: 24px;
}

.menu-filtration {
    margin: auto;
    display: flex;
    flex-direction: column;
}

.menu-filtration-item {
    display: flex;
    align-items: flex-start;
}

.menu-filtration-item:last-child {
    margin-bottom: 0;
}

.menu-filtration-item>span {
    width: 10%;
    padding: 8px 0;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.85);
}

.menu-filtration-item:last-child>span {
    color: rgba(0, 0, 0, 0.45);
}

.menu-filtration-btn {
    width: 90%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu-filtration-btn a {
    display: flex;
    margin-right: 32px;
    margin-bottom: 16px;
}

.menu-filtration-btn span {
    padding: 8px 16px;
    border-radius: 60px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.menu-filtration-item:last-child .menu-filtration-btn span {
    color: rgba(0, 0, 0, 0.45);
}

.menu-filtration-btn span:hover {
    color: #ffffff;
    box-shadow: 0px 3px 6px rgba(239, 202, 51, 0.35);
    background: linear-gradient(180deg, #EFCA33 0%, #F8C10E 100%);
}

.menu-filtration-item:last-child .menu-filtration-btn span:hover {
    color: #F8C10E;
    box-shadow: none;
    background: none;
}

.menu-filtration-active {
    color: #ffffff!important;
    padding: 8px 16px;
    box-shadow: 0px 3px 6px rgba(239, 202, 51, 0.35);
    background: linear-gradient(180deg, #EFCA33 0%, #F8C10E 100%);
}

.drawing-content {
    margin: 16px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
}

.paging {
    margin: auto;
    padding: 32px 0;
}

.paging-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paging-box a {
    margin: 0 8px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 100%;
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.45);
}

.paging-box span {
    margin: 0 8px;
    font-size: 16px;
}

.paging-box a:hover {
    color: #FFFFFF!important;
    border: none!important;
    padding: 7px 17px!important;
    background: linear-gradient(180deg, #FFD501 0%, #F8C10E 100%);
}

.paging-active {
    color: #FFFFFF!important;
    border: none!important;
    padding: 7px 17px!important;
    background: linear-gradient(180deg, #FFD501 0%, #F8C10E 100%);
}

/* 宠西西-生活记录 */

.choiceness {
    width: 100%;
    padding-top: 56px;
    background: #ffffff;
}

.choiceness .swiper-container {
    margin: auto;
}

.choiceness .swiper-container .swiper-button-prev, .choiceness .swiper-container .swiper-button-next {
    display: flex;
    background: rgba(255, 255, 255, 0.85);
}

.choiceness .swiper-container .swiper-button-prev i, .choiceness .swiper-container .swiper-button-next i {
    color: #6CB4C0;
}

.choiceness .swiper-container .swiper-slide a {
    display: flex;
    position: relative;
}

.choiceness .swiper-container .swiper-slide a span {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    padding: 7px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(84, 84, 84, 0) 100%);
    transition: 0.3s;
}

.choiceness .swiper-container .swiper-slide a p {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    padding: 10px;
    background: linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: 0.3s;
}

.choiceness .swiper-container .swiper-slide a:hover span {
    top: 0;
}

.choiceness .swiper-container .swiper-slide a:hover p {
    bottom: 0;
}

.cho-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.life-tab {
    width: 100%;
    background: #ffffff;
    padding-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.life-tab span {
    color: rgba(0, 0, 0, 0.45);
    margin: 0 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #ffffff;
    cursor: pointer;
}

.life-tab span:hover {
    color: rgba(0, 0, 0, 0.85);
    border-bottom: 2px solid rgba(0, 0, 0, 0.85);
}

.life-tab .life-tab-active {
    color: rgba(0, 0, 0, 0.85);
    border-bottom: 2px solid rgba(0, 0, 0, 0.85);
}

.life-record {
    margin: 16px auto 32px auto;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
}

.life-record-item {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.life-record-item a {
    display: flex;
    position: relative;
}

.life-record-item a div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: 0.3s;
}

.life-record-item a div i {
    font-size: 24px;
    line-height: 100%;
    padding: 5px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #AE8574;
}

.life-record-item a:hover div {
    opacity: 1;
}

.life-record-item>div {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 12px 10px 16px 10px;
}

.life-record-item>div p {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.life-record-item>div>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.life-record-item>div>div>div {
    display: flex;
    align-items: center;
}

.life-record-item>div>div>div img {
    width: 24px;
    margin-right: 8px;
    border-radius: 50%;
}

.life-record-item>div>div>div span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
}

.life-record-item>div>div>div:last-child span:last-child {
    margin-left: 20px;
}

.life-record-item>div>div>div i {
    margin-right: 8px;
}

/* 回到顶部 */

.scroll-to-top {
    position: fixed;
    bottom: 5%;
    left: 50%;
    margin-left: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.3s;
    transform: translate(-50%, 0);
}

.scroll-to-top:hover {
    background: rgba(0, 0, 0, 0.25);
}

.scroll-to-top i {
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
}

/* 宠西西-疾病预防 */

.precaution-banner {
    width: 100%;
    display: flex;
    font-size: 0;
}

.precaution-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.precaution-tab {
    width: 100%;
    display: flex;
    padding-top: 64px;
    background: #ffffff;
}

.precaution-tab-list {
    margin: auto;
    display: flex;
    align-items: center;
}

.precaution-tab-list a {
    position: relative;
    padding-bottom: 22px;
    font-size: 20px;
    margin: 0 28px;
    color: rgba(0, 0, 0, 0.65);
    border-bottom: 2px solid #ffffff;
}

/* .precaution-tab-list a:first-child {
    margin-left: 0;
}

.precaution-tab-list a:last-child {
    margin-right: 0;
} */

.precaution-tab-list a:hover {
    color: #F8C10E!important;
    border-bottom: 2px solid #F8C10E!important;
}

.precaution-tab-active {
    color: #F8C10E!important;
    border-bottom: 2px solid #F8C10E!important;
}

.precaution-tab-list a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, 0);
}

.precaution-tab-active::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #F8C10E;
}

.precaution-tab-list a:hover::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #F8C10E;
}

.precaution-list {
    margin: auto;
    margin-top: 34px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.precaution-list-l {
    background: #ffffff;
    padding: 16px;
}

.precaution-list-l, .precaution-list-r {
    display: flex;
    flex-direction: column;
}

.precaution-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.09);
}

.precaution-item>a {
    width: 30%;
    font-size: 0;
}

.precaution-item-r {
    width: 67%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.precaution-item-r>div:first-child {
    display: flex;
    flex-direction: column;
}

.precaution-item-r>div:first-child a {
    font-size: 24px;
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
}

.precaution-item-r>div:first-child a:hover {
    color: #F8C10E;
}

.precaution-item-r>div:first-child p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.precaution-item-r>div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.precaution-item-r>div:last-child div {
    display: flex;
    align-items: center;
}

.precaution-item-r>div:last-child div:first-child a {
    padding: 6px 16px;
    color: #F8C10E;
    font-size: 16px;
    border-radius: 16px;
    border: 1px solid #F8C10E;
    transition: 0.3s;
}

.precaution-item-r>div:last-child div:first-child a:hover {
    color: #FFFFFF;
    border-radius: 16px;
    background: #F8C10E;
}

.precaution-item-r>div:last-child div:first-child a:last-child {
    margin-left: 24px;
}

.precaution-item-r>div:last-child div:last-child span {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
}

.precaution-item-r>div:last-child div:last-child span:last-child {
    margin-left: 24px;
}

.download-ewm {
    padding: 30px 0;
    margin-bottom: 24px;
    background: #ffffff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.download-ewm img {
    width: 65%;
    margin-bottom: 24px;
}

.download-ewm p {
    font-size: 20px;
    color: #000000;
}

.pet-headline {
    padding: 24px 16px 0 16px;
    background: #ffffff;
}

.pet-headline>p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.65);
}

.pet-headline a {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.pet-headline a div {
    margin-right: 8px;
}

.pet-headline a div span {
    width: 16px;
    height: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
}

.pet-headline a:nth-of-type(1) div span {
    background: #E60024;
}

.pet-headline a:nth-of-type(2) div span {
    background: #648615;
}

.pet-headline a:nth-of-type(3) div span {
    background: #F1C728;
}

.pet-headline a p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
}

.pet-headline a:hover p {
    color: #F8C10E;
}

/* 友情链接 */

.blogroll {
    width: 100%;
    display: flex;
    padding: 32px 0;
    background: #ffffff;
}

.blogroll-list {
    margin: auto;
    display: flex;
    flex-direction: column;
}

.blogroll-list>div {
    display: flex;
    align-items: center;
}

.blogroll-list>div:first-child {
    margin-bottom: 16px;
}

.blogroll-list>div label, .blogroll-list>div a {
    line-height: 100%;
    color: rgba(0, 0, 0, 0.65);
}

.blogroll-list>div label {
    margin-right: 40px;
}

.blogroll-list>div a {
    margin-right: 32px;
}

.blogroll-list>div a:hover {
    color: #f8bea3;
}

/* footer */

.footer {
    width: 100%;
    padding: 40px 0 60px 0;
    background: #474747;
}

.footer-auto {
    margin: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-1 {
    display: flex;
    flex-direction: column;
}

.footer-1 p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 10px;
}

.footer-2 {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-2 div {
    display: flex;
    flex-direction: column;
}

.footer-2 div p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-2 div a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-2 div p, .footer-2 div a {
    margin-bottom: 20px;
}

.footer-2 div a:last-child {
    margin-bottom: 0;
}

.footer-3 {
    width: 15%;
    display: flex;
}

/* banner */

@media screen and (min-device-width:800px) {
    body {
        min-width: 1500px;
    }
    .welcome, .mobile-nav {
        display: none;
    }
    .head-nav, .hot-recommend-box, .blogroll-list, .option-column-auto, .drawings, .life, .health-banner, .health, .menu-tab, .menu-filtration, .drawing-content, .paging, .choiceness .swiper-container, .life-record, .precaution-tab-list, .precaution-list, .footer-auto {
        width: 60%;
        min-width: 1150px;
    }
    .precaution-tab-list a:first-child {
        margin-left: 0;
    }
    
    .precaution-tab-list a:last-child {
        margin-right: 0;
    }
    .logo, .logo a {
        width: 80px;
        height: 78px;
    }
    .header, .swiper-1, .hot-recommend, .page-modules, .drawing-banner, .menu, .menu-tab-box, .menu-filtration-box, .footer {
        min-width: 1150px;
    }
    .hot-recommend-box>p {
        font-size: 30px;
        margin-bottom: 24px;
    }
    .recommend-content {
        align-items: stretch;
        justify-content: space-between;
    }
    .recommend-content-1 {
        width: 40%;
    }
    .recommend-content-2 {
        width: 58%;
    }
    .recommend-content-2>div {
        width: 31%;
    }
    .drawings-item, .menu-tab-item, .life-record-item {
        width: 23.73%;
    }
    .drawings-item a p {
        bottom: -16%;
    }
    .drawings-item a:hover p {
        bottom: 0;
    }
    .encyclopedia-atlas-item a p {
        bottom: -25%;
    }
    .encyclopedia-atlas-item a:hover p {
        bottom: 0;
    }
    .life .swiper-slide>div a {
        width: 32%;
    }
    .health a {
        width: 32%;
    }
    .precaution-list-l {
        width: 74.58%;
    }
    .precaution-list-r {
        width: 23.73%;
    }
    /**登录注册**/
    .LoginDiv {
        display: none;
        position: fixed;
        z-index: 1000;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
    }
    .SigninDiv {
        display: none;
        position: fixed;
        z-index: 1000;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
    }
    .LoginDard {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .LoginDiv1 {
        position: absolute;
        width: 30%;
        min-width: 567px;
        height: 55%;
        min-height: 503px;
        padding-top: 3%;
        line-height: 0;
        background: #fff;
        border-radius: 10px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .LoginDiv1 p {
        line-height: 50px;
    }
    .p-22-333-bold {
        margin: 20px 0;
        font-size: 22px;
        color: #333;
        font-weight: bold;
    }
    .LoginDiv1 .txtp p a {
        display: inline-block;
    }
    .txtp {
        width: 70%;
        margin-left: 15%;
        float: left;
    }
    .p-12-999 {
        font-size: 12px;
        color: #999;
    }
    .login-txt1 {
        padding-left: 2em;
        margin: auto;
        margin-bottom: 3%;
        width: 70%;
        height: 50px;
        border: 0;
        font-size: 20px;
        color: #999;
        line-height: 50px;
        border-bottom: 1px solid #ebebeb;
        background: url(../Images/txt1.png) no-repeat;
        background-size: 7% 50%;
        background-position: left;
        outline: none;
    }
    .verification-code {
        position: relative;
        width: 70%;
        margin: auto;
    }
    .login-txt2 {
        padding-left: 2em;
        margin: auto;
        margin-bottom: 3%;
        width: 100%;
        height: 50px;
        border: 0;
        font-size: 20px;
        color: #999;
        line-height: 50px;
        border-bottom: 1px solid #ebebeb;
        background: url(../Images/txt2.png) no-repeat;
        background-size: 7% 50%;
        background-position: left;
        outline: none;
    }
    .login-txt3 {
        padding-left: 2em;
        margin: auto;
        margin-bottom: 3%;
        width: 70%;
        height: 50px;
        border: 0;
        font-size: 20px;
        color: #999;
        line-height: 50px;
        border-bottom: 1px solid #ebebeb;
        background: url(../Images/txt1.png) no-repeat;
        background-size: 7% 50%;
        background-position: left;
        outline: none;
    }
    #btn {
        position: absolute;
        right: 0;
        height: 50px;
        font-size: 16px;
        color: #ffd501;
        line-height: 50px;
        border: none;
        background: none;
        outline: none;
        cursor: pointer;
    }
    #btn1 {
        margin: 2% 0;
        width: 75%;
        height: 60px;
        border: 0;
        font-size: 20px;
        color: #fff;
        line-height: 60px;
        background-color: #ffd501;
        border-radius: 100px;
        float: left;
        position: relative;
        transform: translate(-50%, 0);
        left: 50%;
    }
    red {
        color: #ffd501;
    }
    .close {
        position: absolute;
        top: 4%;
        right: 1%;
        font-size: 40px;
        color: #333;
    }
    .touxiang {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: #fff;
        overflow: hidden;
        /* border: 15px solid #fff; */
    }
    .touxiang img {
        width: 100%;
        min-height: 100%;
    }
    .txtp {
        width: 70%;
        margin-left: 15%;
        float: left;
    }
    /* --------------------------- */
    .buju {
        display: flex;
        width: 60%;
        margin: 30px auto 0;
        padding-bottom: 10px;
        border-bottom: 2px solid #d5d5d5;
    }
    .buju>a {
        color: #000;
    }
    .buju>a:hover {
        color: #ff8a01;
    }
    .buju>.shouye1 {
        color: #a7a7a7;
    }
    .buju>.shouye1:hover {
        color: #a7a7a7;
    }
    .kuandu {
        min-width: 60%;
        margin: 20px 20vw 0 20vw;
    }
    .kuandu1 {
        display: flex;
        justify-content: space-between;
    }
    .mingc {
        font-size: 20px;
        font-weight: bold;
    }
    .mingc1 {
        display: flex;
    }
    .shoucang {
        width: 20px;
        height: 20px;
    }
    .sc {
        font-size: 15px;
        color: #ff8a01;
        margin-left: 10px;
        cursor: pointer;
    }
    .fenxinag {
        width: 20px;
        height: 15px;
        margin-left: 30px;
        margin-top: 2px;
    }
    .fx {
        color: #989898;
        font-size: 15px;
        margin-left: 10px;
        cursor: pointer;
    }
    .bj {
        background-color: #efefef;
        margin-top: 15px;
    }
    .bj-contant {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .pet-information {
        width: 100%;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
    }
    .pet-information-l {
        width: 78%;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .pet-information-r {
        display: flex;
        width: 22%;
    }
    .pet-information-r img {
        width: 100%;
    }
    .xx {
        padding: 20px 0 20px 20px;
        font-weight: bold;
        border-bottom: 1px solid #d8d8d8;
        margin-bottom: 15px;
    }
    .personality {
        padding-left: 20px;
        padding-bottom: 20px;
        font-weight: bold;
        border-bottom: 1px solid #d8d8d8;
        margin-bottom: 15px;
    }
    .pet-information-item {
        width: 50%;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 15px;
        /* color: #a1a1a1; */
        color: #000000;
    }
    .pet-information-item a {
        /* color: #000000; */
        color: #a1a1a1;
    }
    /* .xbj {
        display: flex;
    } */
    .js {
        margin: 40px 0 0 60px;
        background-color: #f8c10e;
        padding: 10px 30px;
        color: #FFFFFF;
        font-weight: bold;
    }
    .js1 {
        margin: 40px 0 0 0;
        background-color: #FFFFFF;
        padding: 10px 30px;
        color: #f8c10e;
        font-weight: bold;
    }
    .nr1 {
        padding-bottom: 40px;
        border-left: 1px solid #d5d5d5;
        border-right: 1px solid #d5d5d5;
        border-bottom: 1px dashed #ababab;
    }
    .nr {
        display: flex;
        padding-bottom: 40px;
        border-bottom: #ababab 1px dashed;
    }
    .xuxian {
        width: 70%;
        padding-bottom: 40px;
    }
    .nrkuan {
        width: 100%;
    }
    .nrkuan1 {
        width: 100%;
    }
    .jianjie {
        display: flex;
        margin: 40px 0 0 60px;
    }
    .one {
        width: 20px;
        height: 20px;
        background-color: #f8c10e;
        line-height: 20px;
        text-align: center;
        color: #FFFFFF;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 10px;
    }
    .jianjie a {
        font-size: 18px;
        font-weight: bold;
    }
    .gou {
        width: 300px;
        height: 200px;
        margin: 20px 0 0 100px;
    }
    .jieshao {
        margin: 15px 10px 15px 20px;
        text-indent: 2em;
    }
    .tedian {
        display: flex;
        margin: 8px 0 0 50px;
        font-weight: bold;
        font-size: 17px;
    }
    .tedian a {
        color: #414141;
        font-size: 15px;
        margin-top: 2px;
    }
    .ykaun {
        width: 30%;
    }
    .juli {
        /* margin-left: 40px; */
    }
    .hot-sale {
        border-left: 1px solid #d5d5d5;
        border-right: 1px solid #d5d5d5;
        padding-bottom: 20px;
    }
    .cnxh {
        font-weight: bold;
        font-size: 20px;
        padding: 40px 0 20px 20px;
    }
    .imgbj {
        display: flex;
        width: 100%;
        margin-top: 30px;
        justify-content: space-around;
    }
    .imgpic {
        width: 15%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #000;
        border: 1px solid #ebebeb;
    }
    .imgpic>div {
        display: flex;
    }
    .imgpic img {
        width: 100%;
    }
    .imgpic p{
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .jsml {
        font-size: 20px;
        font-weight: bold;
        margin: 40px 0 0 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ababab;
    }
    .mulu {
        font-size: 15px;
        color: #f9c51d;
        font-weight: bold;
        margin: 10px 0 0 40px;
    }
    .xxge {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
    .xingge {
        width: 40%;
        display: flex;
        margin-left: 20px;
    }
    .nren {
        font-size: 15px;
        margin-top: 5px;
    }
    .xin {
        width: 15px;
        height: 15px;
        margin-left: 5px;
        margin-top: 10px;
    }
    .wbj1 {
        display: flex;
        width: 60%;
        margin: 0 20%;
    }
    .wbj {
        width: 75%;
        border-left: 1px solid #d5d5d5;
        border-right: 1px solid #d5d5d5;
    }
    .wbt {
        font-size: 25px;
        text-align: center;
        margin-top: 30px;
    }
    .wtime {
        font-size: 12px;
        text-align: center;
        margin-top: 10px;
        color: #bbbbbb;
    }
    .wbiaot {
        font-size: 15px;
        font-weight: bold;
        margin: 20px 0 0 30px;
    }
    .wnr {
        font-size: 15px;
        margin: 10px 30px 0 30px;
        letter-spacing: 2px;
    }
    .wxian {
        margin-top: 40px;
        border-bottom: #ababab 1px dashed;
    }
    .wsp {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .wspbj {
        display: flex;
    }
    .wscimg {
        width: 15px;
        height: 15px;
        margin: 30px 5px 0 0;
    }
    .shwoucang {
        font-size: 15px;
        margin-top: 28px;
        color: #FF8A01;
        cursor: pointer;
    }
    .wfx {
        width: 20px;
        height: 15px;
        margin: 30px 5px 0 20px;
    }
    .shwoucang1 {
        font-size: 15px;
        margin-top: 28px;
        color: #d8d8d8;
        margin-right: 20px;
        cursor: pointer;
    }
    .wspp {
        display: flex;
        justify-content: space-between;
    }
    .wshang {
        display: flex;
        font-size: 15px;
        margin: 20px 20px 0 20px;
        color: #8d8d8d;
    }
    .wshang a {
        color: #4c4c4c;
    }
    .xgwz {
        font-size: 20px;
        font-weight: bold;
        margin: 30px 0 20px 20px;
    }
    .wznr {
        display: flex;
        flex-wrap: wrap;
    }
    .wznr1 {
        width: 33.3%;
        display: flex;
    }
    .tuxiang {
        width: 10px;
        height: 15px;
        margin: 10px 0 0 20px;
    }
    .wts {
        font-size: 10px;
        margin: 10px 0 0 5px;
        color: #646567;
    }
    .wgdu {
        height: 100px;
    }
    .wykuan {
        width: 25%;
    }
    .wrenshu {
        font-size: 18px;
        display: flex;
        margin: 30px 0 0 30px;
        padding-bottom: 5px;
        border-bottom: 1px solid #d8d8d8;
    }
    .wrenshu a {
        color: #fbda6d;
        margin-right: 5px;
    }
    .wdog {
        width: 250px;
        height: 200px;
        margin: 20px 0 0 30px;
    }
    .rmht {
        font-size: 18px;
        margin: 10px 0 0 30px;
        padding-bottom: 5px;
        border-bottom: 1px solid #d8d8d8;
    }
    .whu {
        font-size: 15px;
        margin: 10px 0 0 30px;
        cursor: pointer;
    }
}

@media screen and (max-device-width:800px) {
    a,.swiper-button-next, .swiper-button-prev,.swiper-button-next, .swiper-button-prev,.option-list ul li{
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-user-select: none;
        -moz-user-focus: none;
        -moz-user-select: none;
    }
    .header {
        display: none;
    }
    /**登录注册**/
    .LoginDiv {
        display: none;
        position: fixed;
        z-index: 1001;
        width: 100%;
        height: 100%;
        background-color: #fff;
        text-align: center;
    }
    .SigninDiv {
        display: none;
        position: fixed;
        z-index: 1001;
        width: 100%;
        height: 100%;
        background-color: #fff;
        text-align: center;
    }
    .LoginDard {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .LoginDiv1 {
        position: relative;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        width: 80%;
        height: 100%;
        background-color: #fff;
        border-radius: 10px;
    }
    .LoginDiv1 p {
        line-height: 20px;
    }
    .LoginDiv1 .txtp p a {
        display: inline-block;
    }
    .p-22-333-bold {
        margin: 10px 0;
        font-size: 16px;
        color: #333;
        font-weight: bold;
    }
    .txtp {
        width: 100%;
        margin: 10px 0;
    }
    .login-txt1 {
        padding-left: 15px;
        width: 100%;
        height: 45px;
        border: 0;
        font-size: 12px;
        color: #666;
        line-height: 20px;
        background-color: #f2f3f5;
    }
    .login-txt2 {
        padding-left: 15px;
        width: 60%;
        height: 45px;
        border: 0;
        font-size: 12px;
        color: #666;
        line-height: 20px;
        background-color: #f2f3f5;
    }
    .login-txt3 {
        padding-left: 15px;
        width: 100%;
        height: 45px;
        border: 0;
        font-size: 12px;
        color: #666;
        line-height: 20px;
        margin-bottom: 15px;
        background-color: #f2f3f5;
    }
    #btn {
        width: 40%;
        height: 45px;
        border: 0;
        font-size: 12px;
        color: #fff;
        line-height: 20px;
        background-color: #ffd501;
    }
    .verification-code {
        display: flex;
        align-items: center;
        margin: 15px 0;
        width: 100%;
    }
    .p-12-999 {
        font-size: 12px;
        color: #999;
    }
    #btn1 {
        width: 100%;
        height: 45px;
        border: 0;
        font-size: 12px;
        color: #fff;
        line-height: 20px;
        background-color: #ffd501;
    }
    red {
        color: #ffd501;
    }
    .close {
        position: absolute;
        top: 3%;
        right: 0;
        font-size: 25px;
        color: #333;
    }
    .touxiang {
        width: 45%;
        margin: 0 auto;
        margin-top: 10%;
    }
    .touxiang img {
        width: 100%;
    }
    /* --------------- */
    .buju {
        display: flex;
        margin: 15px 10px;
        padding-bottom: 10px;
        border-bottom: 2px solid #d5d5d5;
    }
    .buju>a {
        color: #000;
        font-size: 15px;
    }
    .buju>a:last-child{
        width: 14em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .buju>.shouye1 {
        color: #a7a7a7;
    }
    .xian {
        border: 1px solid #d5d5d5;
        margin: 10px 0 0 0;
        width: 99%;
    }
    .kuandu {
        min-width: 100%;
    }
    .kuandu1 {
        display: flex;
        justify-content: space-between;
    }
    .mingc {
        font-size: 18px;
        margin: 10px 0 0 10px;
        font-weight: bold;
    }
    .mingc1 {
        margin-top: 10px;
        display: flex;
    }
    .shoucang {
        width: 20px;
        height: 20px;
    }
    .sc {
        font-size: 15px;
        color: #ff8a01;
        margin-left: 10px;
        cursor: pointer;
    }
    .fenxinag {
        width: 20px;
        height: 15px;
        margin-left: 10px;
        margin-top: 2px;
    }
    .fx {
        color: #989898;
        font-size: 15px;
        margin-left: 10px;
        margin-right: 10px;
        cursor: pointer;
    }
    .bj {
        background-color: #efefef;
        margin-top: 10px;
    }
    .bj-contant {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .xx {
        padding-top: 10px;
        padding-left: 10px;
        padding-bottom: 10px;
        font-weight: bold;
    }
    .personality {
        padding-top: 10px;
        padding-left: 10px;
        padding-bottom: 10px;
        font-weight: bold;
    }
    .xxge {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }
    /* .xbj {
        display: flex;
    } */
    .js {
        margin: 10px 0 0 10px;
        background-color: #f8c10e;
        padding: 10px;
        color: #FFFFFF;
        font-weight: bold;
    }
    .js1 {
        margin: 10px 0 0 0;
        background-color: #FFFFFF;
        padding: 10px;
        color: #f8c10e;
        font-weight: bold;
    }
    .pet-information-r {
        display: none;
    }
    .pet-information-item {
        display: flex;
        font-size: 14px;
        margin: 0 0 10px 10px;
        /* color: #a1a1a1; */
        color: #000000;
    }
    .pet-information-item a {
        /* color: #000000; */
        color: #a1a1a1;
    }
    .dog {
        width: 100%;
    }
    .nr {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 40px;
        border-bottom: #ababab 1px dashed;
    }
    .xuxian {
        width: 100%;
    }
    .nrkuan {
        width: 100%;
    }
    .jianjie {
        display: flex;
        margin: 20px 0 0 10px;
    }
    .one {
        width: 20px;
        height: 20px;
        background-color: #f8c10e;
        line-height: 20px;
        text-align: center;
        color: #FFFFFF;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 10px;
    }
    .jianjie a {
        font-size: 15px;
        font-weight: bold;
    }
    .gou {
        width: 100%;
        margin: 10px 0 0 0;
    }
    .jieshao {
        font-size: 15px;
        margin: 15px 10px 15px 10px;
        text-indent: 2em;
    }
    .tedian {
        display: flex;
        margin: 8px 0 0 10px;
        font-weight: bold;
        font-size: 15px;
    }
    .tedian a {
        color: #414141;
        font-size: 10px;
        margin-top: 2px;
    }
    .ykaun {
        width: 100%;
    }
    .juli {
        /* margin-left: 10px; */
    }
    .hot-sale {
        padding-bottom: 20px;
    }
    .cnxh {
        padding-top: 10px;
        padding-left: 10px;
        padding-bottom: 10px;
        font-weight: bold;
        padding-bottom: 20px;
        border-bottom: 1px solid #ababab;
    }
    .imgbj {
        display: flex;
        width: 100%;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .imgpic {
        width: 30%;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #000;
        border: 1px solid #ebebeb;
    }
    .imgpic>div {
        display: flex;
    }
    .imgpic img {
        width: 100%;
    }
    .imgpic p {
        font-size: 12px;
        text-align: center;
        padding: 5px 0;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .jsml {
        padding-top: 10px;
        padding-left: 10px;
        padding-bottom: 10px;
        font-weight: bold;
        padding-bottom: 20px;
        border-bottom: 1px solid #ababab;
    }
    .mulu {
        font-size: 15px;
        padding: 3px 5px;
        border-radius: 5px;
        color: #f9c51d;
        font-weight: bold;
        margin: 10px 0 0 10px;
    }
    .xingge {
        display: flex;
        margin-left: 10px;
    }
    .nren {
        font-size: 14px;
        margin-top: 5px;
    }
    .xin {
        width: 15px;
        height: 15px;
        margin-left: 5px;
        margin-top: 8px;
    }
    .wbj1 {
        width: 100%;
    }
    .wbj {
        width: 100%;
    }
    .wbt {
        font-size: 20px;
        text-align: center;
        margin-top: 20px;
    }
    .wtime {
        font-size: 12px;
        text-align: center;
        margin-top: 10px;
        color: #bbbbbb;
    }
    .wbiaot {
        font-size: 15px;
        font-weight: bold;
        margin: 20px 0 0 10px;
    }
    .wnr {
        font-size: 15px;
        margin: 10px 10px 0 10px;
        letter-spacing: 2px;
    }
    .wxian {
        margin-top: 40px;
        border-bottom: #ababab 1px dashed;
    }
    .wsp {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .wspbj {
        display: flex;
    }
    .wscimg {
        width: 15px;
        height: 15px;
        margin: 20px 5px 0 0;
    }
    .shwoucang {
        font-size: 15px;
        margin-top: 18px;
        color: #FF8A01;
        cursor: pointer;
    }
    .wfx {
        width: 20px;
        height: 15px;
        margin: 20px 5px 0 20px;
    }
    .shwoucang1 {
        font-size: 15px;
        margin-top: 18px;
        color: #d8d8d8;
        margin-right: 10px;
        cursor: pointer;
    }
    .wspp {
        display: flex;
        justify-content: space-between;
    }
    .wshang {
        display: flex;
        font-size: 10px;
        margin: 20px 10px 0 10px;
        color: #8d8d8d;
    }
    .wshang a {
        color: #4c4c4c;
    }
    .xgwz {
        font-size: 20px;
        font-weight: bold;
        margin: 20px 0 10px 10px;
    }
    .wznr {
        display: flex;
        flex-wrap: wrap;
    }
    .wznr1 {
        display: flex;
    }
    .tuxiang {
        width: 10px;
        height: 15px;
        margin: 10px 0 0 20px;
    }
    .wts {
        font-size: 10px;
        margin: 10px 0 0 5px;
        color: #646567;
    }
    .wgdu {
        height: 10px;
    }
    .wykuan {}
    .wrenshu {
        font-size: 18px;
        display: flex;
        margin: 30px 0 0 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid #d8d8d8;
    }
    .wrenshu a {
        color: #fbda6d;
        margin-right: 5px;
    }
    .wdog {
        width: 250px;
        height: 200px;
        margin: 20px 0 0 30px;
    }
    .rmht {
        font-size: 18px;
        margin: 10px 0 0 30px;
        padding-bottom: 5px;
        border-bottom: 1px solid #d8d8d8;
    }
    .whu {
        font-size: 15px;
        margin: 10px 0 0 30px;
    }
    .welcome {
        width: 100%;
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }
    .welcome>div a, .welcome p {
        font-size: 14px;
    }
    .welcome>div {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .welcome>div>div {
        width: 20%;
        display: flex;
    }
    .welcome>div:last-child{
        justify-content: flex-end;
    }
    .welcome>div a {
        color: #000;
    }
    .mobile-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #6c9285;
    }
    .mobile-nav a {
        padding: 5px 8px;
        font-size: 12px;
        color: #ffffff;
    }
    .mobile-nav-active {
        background: #ffffff;
        color: rgba(0, 0, 0, 0.85)!important;
    }
    .head-nav, .hot-recommend-box, .blogroll-list, .option-column-auto, .drawings, .life, .health-banner, .health, .menu-tab, .menu-filtration, .drawing-content, .paging, .life-record, .precaution-tab-list, .precaution-list, .footer-auto {
        width: 90%;
    }
    .header, .swiper-1, .hot-recommend, .page-modules, .drawing-banner, .menu, .menu-tab-box, .menu-filtration-box, .footer {
        width: 100%;
    }
    .header-relative {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
    }
    .logo, .logo a {
        width: 40px;
        height: 39px;
    }
    .head-nav>a {
        display: none;
        padding: 0;
        font-size: 12px;
    }
    .input-box {
        display: none;
    }
    .member>a {
        line-height: 100%;
    }
    .member>a i {
        font-size: 14px;
    }
    .member>div {
        min-width: 50px;
        right: -8px;
        top: 14px;
    }
    .member>div ul li a {
        padding: 5px;
    }
    .swiper-pagination-bullet {
        width: 30px;
        height: 4px;
    }
    .swiper-container {
        font-size: 0;
    }
    .swiper-button-next, .swiper-button-prev {
        display: flex;
    }
    .hot-recommend {
        padding: 20px 0 34px 0;
    }
    .hot-recommend-box>p {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .recommend-content {
        flex-direction: column;
    }
    .recommend-content-1 {
        width: 100%;
        margin-bottom: 15px;
    }
    .recommend-content-2 {
        width: 100%;
    }
    .recommend-content-2>div {
        width: 48%;
        margin-bottom: 15px;
    }
    .recommend-content-1 a div p, .recommend-content-2>div a p {
        font-size: 12px;
    }
    .title-img {
        width: 50%;
    }
    .option-column {
        padding-bottom: 16px;
    }
    .option-list ul li {
        font-size: 12px;
        margin-right: 20px;
    }
    .drawings-active, .life-active, .health-active {
        font-size: 14px!important;
    }
    .option-list a {
        font-size: 12px;
    }
    .encyclopedia {
        width: 90%;
    }
    .encyclopedia-title span {
        padding: 5px 10px;
        font-size: 16px;
    }
    .encyclopedia-title a {
        font-size: 16px;
    }
    .encyclopedia-atlas-item {
        width: 48%;
    }
    .encyclopedia-atlas-item a p {
        bottom: 0;
    }
    .encyclopedia-atlas-item>div p:first-child {
        font-size: 14px;
    }
    .encyclopedia-atlas-item>div p:last-child {
        font-size: 12px;
    }
    .encyclopedia-atlas-item>div {
        padding: 4px 0;
    }
    .drawings-item, .life-record-item {
        width: 48%;
    }
    .drawings, .life, .health-banner {
        margin: 16px auto 12px auto;
    }
    .drawings-item, .life .swiper-slide>div a {
        margin-bottom: 12px;
    }
    .drawings-item a p {
        bottom: 0;
        font-size: 12px;
    }
    .drawings-item>div p:first-child {
        font-size: 14px;
    }
    .drawings-item>div p:last-child {
        font-size: 12px;
    }
    .life .swiper-slide>div a {
        width: 48%;
    }
    .life .swiper-slide>div a img{
        /* height: calc(57.3333%); */
    }
    .life .swiper-slide>div a>div>div {
        flex-direction: column;
    }
    .life .swiper-slide>div a>div>div>div {
        width: 100%;
    }
    .life .swiper-slide>div a>div>div>div:first-child {
        margin-bottom: 10px;
    }
    .life .swiper-slide>div a>div>div>div:last-child {
        justify-content: space-between;
    }
    .life .swiper-slide>div a>div p, .life .swiper-slide>div a>div>div>div:first-child span, .life .swiper-slide>div a>div>div>div:last-child span, .health a>div p {
        font-size: 12px;
    }
    .life .swiper-slide>div a>div>div>div:first-child span {
        margin-left: 4px;
    }
    .life .swiper-slide>div a>div>div>div:last-child span:last-child {
        margin-left: 10px;
    }
    .health a {
        width: 48%;
    }
    .health a>img{
        /* height: calc(46.7632%); */
    }
    .health a>div>div {
        flex-direction: column;
    }
    .health a>div>div>div {
        width: 100%;
    }
    .health a>div>div>div:first-child {
        margin-bottom: 10px;
    }
    .health a>div>div>div:last-child {
        justify-content: space-between;
    }
    .health a>div>div>div:last-child span {
        font-size: 12px;
        padding: 4px 10px;
    }
    .health a>div>div>div:last-child span:last-child {
        margin-left: 0;
    }
    .blogroll-list>div {
        flex-wrap: wrap;
        justify-content: left;
    }
    .blogroll-list>div label, .blogroll-list>div a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .menu-tab-box {
        padding: 28px 0 18px 0;
    }
    .menu-tab-item {
        width: 30%;
        padding: 10px 0;
    }
    .menu-tab-item i, .menu-tab-item span {
        font-size: 14px;
    }
    .menu-tab-item span {
        margin-left: 8px;
    }
    .menu-filtration-item {
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .menu-filtration-btn {
        width: 73%;
        flex-wrap: wrap;
    }
    .menu-filtration-item>span {
        width: 27%;
        padding-top: 4px;
    }
    .menu-filtration-item>span, .menu-filtration-btn span {
        font-size: 16px;
    }
    .menu-filtration-btn a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .menu-filtration-btn span {
        padding: 4px 8px;
        border-radius: 20px;
    }
    .paging-box {
        align-items: stretch;
    }
    .paging-box a {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 0 4px;
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 4px;
    }
    .paging-box span {
        display: flex;
        align-items: center;
    }
    .paging-box a:hover {
        padding: 4px 9px!important;
    }
    .paging-active {
        padding: 4px 9px!important;
    }
    .choiceness {
        padding-top: 0;
    }
    .choiceness .swiper-container {
        width: 100%;
    }
    .choiceness .swiper-container .swiper-slide a span {
        top: 0;
    }
    .choiceness .swiper-container .swiper-slide a p {
        bottom: 0;
    }
    .life-tab {
        padding-top: 24px;
    }
    .life-tab span {
        padding-bottom: 10px;
    }
    .life-record-item {
        margin-bottom: 10px;
    }
    .life-record-item>div p {
        font-size: 12px;
    }
    .life-record-item>div>div {
        flex-direction: column;
    }
    .life-record-item>div>div>div {
        width: 100%;
    }
    .life-record-item>div>div>div:first-child {
        margin-bottom: 10px;
    }
    .life-record-item>div>div>div:last-child {
        justify-content: space-between;
    }
    .life-record-item>div>div>div:last-child span:last-child {
        margin-left: 0;
    }
    .precaution-tab {
        padding-top: 32px;
    }
    .precaution-tab-list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .precaution-tab-list a {
        font-size: 14px;
        padding-bottom: 10px;
        margin: 0 3%;
        margin-bottom: 10px;
    }
    .precaution-list-l {
        width: 100%;
    }
    .precaution-list-r {
        display: none;
    }
    .precaution-item {
        flex-direction: column;
    }
    .precaution-item>a, .precaution-item-r {
        width: 100%;
    }
    .precaution-item-r>div:first-child a {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .precaution-item-r>div:first-child p {
        margin-bottom: 10px;
    }
    .precaution-item-r>div:last-child div:first-child a {
        padding: 3px 8px;
        font-size: 12px;
    }
    .footer-auto {
        flex-direction: column;
        align-items: center;
    }
    .footer-1 {
        width: 60%;
        margin-bottom: 24px;
    }
    .footer-1 p {
        font-size: 12px;
        text-align: center;
    }
    .footer-2 {
        width: 80%;
        flex-direction: column;
    }
    .footer-2 div {
        width: 100%;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-2 div a:last-child {
        margin-bottom: 20px;
    }
    .footer-2 div p {
        font-size: 16px;
    }
    .footer-2 div a {
        font-size: 12px;
    }
    .footer-3 {
        width: 50%;
    }
    .scroll-to-top {
        margin-left: 0;
        left: 80%;
    }
}

/*分页样式*/

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 20px;
}

.pagination>li {
    display: inline;
}

.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.428571429;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
    background-color: #ff9900;
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    z-index: 2;
    color: #ffffff;
    cursor: default;
    background-color: #ff9900;
    border-color: #ff9900;
}

.pagination>.disabled>span, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    color: #ff9900;
    cursor: not-allowed;
    background-color: #ffffff;
    border-color: #dddddd;
}

.pagination-lg>li>a, .pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm>li>a, .pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}