* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #fff;
    box-shadow: 0 0 0 0 #5d5d5d8c;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header .logo img {
    width: 70.4px;
    height: 32px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

nav ul li {
    position: relative;
}

nav ul li .company-wechat-modal {
    position: absolute;
    right: 0;
    width: 142px;
    height: 142px;
    background: #FFFFFF;
    box-shadow: 0 2px 10px 0 #00000033;
    border-radius: 4px;
    display: none;
}

nav ul li:hover .company-wechat-modal {
    display: block;
}

nav ul li .company-wechat-modal img {
    width: 100%;
    height: 100%;
    display: block;
}

nav ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #666;
}

nav ul li:hover a {
    color: #000;
}

.hero {
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #fff;
    background-image: url('./assets/images/pets-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    color: #fff;
}

.hero .mask {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-weight: 600;
    font-size: 86px;
    color: #FFFFFF;
    margin-top: 200px;
}

.hero h2 {
    font-weight: 500;
    font-size: 36px;
    color: #FFFFFF;
    height: 80px;
    line-height: 80px;
    background: rgba(27, 185, 91, 0.8);
    border-radius: 10px;
    padding: 0 30px;
    margin: 36px 0;
}

.hero p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 36px;
}

.hero img {
    width: 50px;
    height: 70px;
    position: absolute;
    bottom: 150px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reasons {
    background-color: #F9F9F9;
}

.reasons .container {
    padding-top: 150px;
    padding-bottom: 100px;
}

.reasons h2 {
    font-weight: 500;
    font-size: 32px;
    color: #000000;
    text-align: center;
}

.reasons .description {
    font-size: 16px;
    color: #999999;
    text-align: center;
    margin-top: 20px;
}

.reasons .reasons-list {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    gap: 38px;
}

.reasons .reason-card {
    flex: 1;
    height: 210px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px 22px 0 30px;
}

.reasons .reason-card:hover {
    box-shadow: 0 4px 20px 10px #b5b5b512;
}

.reasons .reason-card .num {
    line-height: 46px;
    font-weight: 600;
    font-size: 40px;
    color: #1BB95B;
    opacity: 0.2;
}

.reasons .reason-card h3 {
    font-weight: 600;
    font-size: 14px;
    color: #1BB95B;
}

.reasons .reason-card p {
    font-size: 14px;
    color: #0F1702;
    margin-top: 10px;
}

.brands {
    background-color: #fff;
}

.brands .container {
    padding: 150px 0;
}

.brands h2 {
    font-weight: 500;
    font-size: 32px;
    color: #000000;
    text-align: center;
}

.brands .description {
    font-size: 16px;
    color: #999999;
    text-align: center;
    margin-top: 20px;
}

.brands .tabs {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.brands .tabs .tab {
    width: 400px;
    padding: 15px 0;
    font-size: 16px;
    color: #666666;
    cursor: pointer;
    border-bottom: 1px solid #D9D9D9;
    text-align: center;
}

.brands .tabs .tab.active {
    color: #1BB95B;
    border-bottom: 2px solid #1BB95B;
}

.brands .tab-content .barnds-image-list {
    margin-top: 50px;
}

.brands .tab-content .barnds-image-list .row {
    display: flex;
    justify-content: space-around;
    padding: 0 50px;
    margin-bottom: 60px;
}

.brands .tab-content .barnds-image-list .brand-card {
    text-align: center;
    padding: 0 40px;
    cursor: pointer;
}

.brands .tab-content .barnds-image-list .brand-card img {
    height: 88px;
    display: block;
}

.brands .tab-content .barnds-image-list .brand-card.active img {
    box-shadow: 0 8px 12px 0 #9e9e9ed4;
}

.brands .current-brand {
    padding: 24px 50px;
    background: #FFFFFF;
    border: 1px solid #1bb95b1a;
    box-shadow: 0 4px 20px 10px #b5b5b512;
    border-radius: 8px;
}

.brands .current-brand .brand-name {
    font-weight: 600;
    font-size: 14px;
    color: #0F1702;
}

.brands .current-brand .brand-description {
    font-size: 14px;
    color: #0F1702;
}

.partner {
    background-color: #FAFDFB;
}

.partner .container {
    display: flex;
    justify-content: space-between;
    padding: 150px 0;
}

.partner .container .left {
    flex: 1;
    padding: 30px 0;
}

.partner .container .left h2 {
    font-weight: 500;
    font-size: 32px;
    color: #000000;
    margin-bottom: 24px;
}

.partner .container .left p {
    font-size: 16px;
    color: #999999;
}

.partner .container .right {
    flex: 2;
}

.partner .container .right .partner-list {}

.partner .container .right .partner-list .partner-card {
    padding: 30px 0;
}

.partner .container .right .partner-list .partner-card {
    border-bottom: 1px solid #D9D9D9;
}

.partner .container .right .partner-list .partner-card:last-child {
    border-bottom: none;
}

.partner .container .right .partner-list .partner-card .title {
    display: flex;
}

.partner .container .right .partner-list .partner-card .content {
    display: flex;
    margin-top: 16px;
}

.partner .container .right .partner-list .partner-card .title .num {
    width: 110px;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}

.partner .container .right .partner-list .partner-card .title .label {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}

.partner .container .right .partner-list .partner-card .content .logo {
    width: 110px;
}

.partner .container .right .partner-list .partner-card .content .logo img {
    max-width: 80px;
    max-height: 54px;
}

.partner .container .right .partner-list .partner-card .content .introdution {
    flex: 1;
    font-size: 14px;
    color: #000000;
}

.evaluations {
    background-color: #F9F9F9;
}

.evaluations .container {
    padding: 150px 0;
}

.evaluations h2 {
    font-weight: 500;
    font-size: 32px;
    color: #000000;
    text-align: center;
}

.evaluations .description {
    font-size: 16px;
    color: #999999;
    text-align: center;
    margin-top: 20px;
}

.evaluations .swiper {
    width: 100%;
    margin-top: 70px;
}

.evaluations .evaluation-card {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.evaluations .evaluation-card .images {
    width: 455px;
    height: 500px;
}

.evaluations .evaluation-card .images img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.evaluations .evaluation-card .content {
    width: 455px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evaluations .evaluation-card .content h3 {
    font-weight: 500;
    font-size: 14px;
    color: #060606;
}

.evaluations .evaluation-card .content .content-item h4 {
    font-size: 14px;
    color: #060606;
    display: flex;
    align-items: center;
    gap: 10px;
}

.evaluations .evaluation-card .content .content-item h4::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #1BB95B;
    border-radius: 6px;
}

.evaluations .evaluation-card .content .content-item p {
    font-size: 14px;
    color: #666666;
    padding-left: 18px;
}

.custom-swiper-button-prev {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 99;
}

.custom-swiper-button-prev img {
    width: 64px;
    height: 64px;
}

.custom-swiper-button-next {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 40%;
    right: 0;
    z-index: 99;
}

.custom-swiper-button-next img {
    width: 64px;
    height: 64px;
}

.footer {
    width: 100%;
    background-color: #222;
    color: #6F6F6F;
    font-size: 14px;
}

.footer .copy-right {
    text-align: center;
}

.footer .main {
    display: flex;
    justify-content: space-between;
    gap: 192px;
    padding: 73px 0;
}

.footer .main .left {
    flex: 1;
}

.footer .main .left .logo {
    width: 92.4px;
    height: 42px;
}

.footer .main .left .introdution {
    margin-top: 34px;
}

.footer .main .left .email {
    margin-top: 20px;
}

.footer .main .right {
    flex-shrink: 0;
    display: flex;
    gap: 20px;
}

.footer .main .right .qrcode {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer .main .right .qrcode img {
    width: 124px;
    height: 124px;
    display: block;
}

.copy-right {
    padding: 33px 0;
}