* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.jzzs-body {
    font-family: PingFang SC, PingFang SC;
    background-color: #fff;
}

.jzzs-body .container {
    width: 1400px;
    margin: 0 auto;
}

/* 头部导航 */
.jzzs-body .header-section {
    background: rgba(0, 0, 0, 0.5);
    background-size: cover;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 110px;
}

.jzzs-body .header-container {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    padding: 0 15px;
}

.jzzs-body .logo {
    display: flex;
    align-items: center;
}

.jzzs-body .logo img {
    height: 56px;
}

.jzzs-body .logo-text {
    line-height: 25px;
    font-weight: bold;
    border-left: 1px solid #fff;
    padding-left: 15px;
    margin-left: 20px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.jzzs-body .nav-menu {
    flex: 1;
    display: flex;
    gap: 45px;
    align-items: center;
    justify-content: flex-end;
    margin-right: 55px;
}

.jzzs-body .nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.jzzs-body .nav-menu a:hover {
    color: #f9a825;
}

.jzzs-body .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f9a825;
    transition: width 0.3s;
}

.jzzs-body .nav-menu a:hover::after {
    width: 100%;
}

.jzzs-body .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.jzzs-body .phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
}

.jzzs-body .phone-icon {
    font-size: 18px;
}

.jzzs-body .search-icon {
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
}

.jzzs-body .search-icon:hover {
    transform: scale(1.1);
}

/* 轮播图区域 */
.jzzs-body .banner-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.jzzs-body .banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* A部分 - 六大优势 */
.jzzs-body .section-a {
    padding: 40px 0;
    background-color: #F8F8F8;
}

.jzzs-body .section-a .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1400px;
    margin: 0 auto;
}

.jzzs-body .section-a-header {
    width: 258px;
    height: 372px;
    background: #D61F22;
    border-radius: 0px 0px 0px 0px;
    margin-right: 5px;
    box-sizing: border-box;
    padding: 40px 30px;
}
.jzzs-body .section-a-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
}
.jzzs-body .section-a-line img {
    width: 25px;
    height: auto;
    margin-left: 10px;
}
.jzzs-body .section-a-title {
    font-size: 42px;
    color: #FFFFFF;
    line-height: 50px;
    text-align: left;
    margin: 50px 0;
}

.jzzs-body .section-a-subtitle {
    font-size: 14px;
    color: #fff;
    line-height: 30px;
}

.jzzs-body .section-a-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.jzzs-body .section-a-item {
    width: calc(33.33% - 10px);
    overflow: hidden;
    margin: 5px;
    text-align: center;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    background-color: #fff;
    border-radius: 5px;
}

.jzzs-body .section-a-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #f9a825;
}

.jzzs-body .section-a-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
    border-radius: 50%;
    transition: all 0.3s;
}

.jzzs-body .section-a-item:hover .section-a-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.4);
}

.jzzs-body .section-a-icon img {
    width: 45px;
    height: 45px;
}

.jzzs-body .section-a-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.jzzs-body .section-a-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* B部分 - 品牌展示 */
.jzzs-body .section-b {
    padding: 40px 0;
    background-color: #fff;
}

.jzzs-body .section-b-header {
    text-align: center;
    margin-bottom: 60px;
}

.jzzs-body .section-b-title img{
    width: 208px;
    height: auto;
    margin: 0 auto;
}

.jzzs-body .section-b-subtitle {
font-size: 16px;
color: #333333;
font-style: normal;
}

.jzzs-body .section-b-grid {
    width: 1400px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.jzzs-body .section-b-item {
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    margin: 5px;
}

.jzzs-body .section-b-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.jzzs-body .section-b-item-2 {
    width: 885px;
}
.jzzs-body .section-b-item-1 {
    width: 495px;
}
.jzzs-body .section-b-logo {
    margin: 0 auto;
    transition: all 0.3s;
}

.jzzs-body .section-b-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.jzzs-body .section-b-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.jzzs-body .section-b-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* C部分 - 设计团队 */
.jzzs-body .section-c {
    padding: 40px 0;
    background-color: #fff;
}

.jzzs-body .section-c-header {
    text-align: center;
    margin-bottom: 60px;
}

.jzzs-body .section-c-title img{
    width: 208px;
    height: auto;
    margin: 0 auto;
}

.jzzs-body .section-c-subtitle {
    font-size: 16px;
    color: #333333;
    font-style: normal;
}

.jzzs-body .section-c-grid {
    width: 1400px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.jzzs-body .section-c-item {
    flex: 1;
    transition: all 0.5s;
    margin: 5px;
    position: relative;
    height: 500px;
}

.jzzs-body .section-c-item.active {
    flex: 0 0 calc(25% - 10px);
}

.jzzs-body .section-c-item .intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    color: #fff;
}
.jzzs-body .section-c-item .intro h3 {
    font-size: 22px;
    margin-bottom: 20px;
}
.jzzs-body .section-c-item .intro p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #fff;
}
.jzzs-body .section-c-item .intro .btn {
    width: 140px;
    height: 50px;
    background: #D61F22;
    border-radius: 10px 10px 10px 10px;
    font-weight: normal;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    margin: 215px 0 15px;
    border: 0;
}
.jzzs-body .section-c-item .intro .subtitle{
    display: none;
}
.jzzs-body .section-c-item.active .intro .subtitle{
    display: block;
}

.jzzs-body .section-c-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 15px;
}

.jzzs-body .section-c-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.jzzs-body .section-c-item p {
    font-size: 13px;
    color: #999;
}

/* D部分 - 案例展示 */
.jzzs-body .section-d {
    background-color: #fff;
}

.jzzs-body .section-d .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 40px;
}

.jzzs-body .section-title ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jzzs-body .section-title li {
    font-weight: 600;
    font-size: 18px;
    color: #333333;
    font-style: normal;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 0 41px;
}

.jzzs-body .section-title li::after {
    content: '/';
    position: absolute;
    right: 0px;
    top: 0;
    color: #DDDDDD;
}

.jzzs-body .section-title li:last-child::after {
    content: '';
}

.jzzs-body .section-title li:hover::after {
    transform: scaleX(1);
}

.jzzs-body .section-title li:hover {
    color: #D61F22;
}

.jzzs-body .section-d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.jzzs-body .section-d-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    height: 300px;
}

.jzzs-body .section-d-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.jzzs-body .section-d-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.jzzs-body .section-d-info {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.jzzs-body .section-d-info h4 {
    font-weight: normal;
font-size: 16px;
color: #FFFFFF;
text-align: center;
}

.jzzs-body .section-d-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.jzzs-body .section-d-info .tags {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.jzzs-body .section-d-info .tag {
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

/* E部分 - 服务流程 */
.jzzs-body .section-e {
    margin: 40px 0 0;
    padding: 40px 0;
    background-color: #000;
}

.jzzs-body .section-e-header {
    text-align: center;
    margin-bottom: 30px;
}

.jzzs-body .section-e-title {
    font-size: 30px;
color: #FFFFFF;
text-align: center;
font-style: normal;
}

.jzzs-body .section-e-subtitle {
    font-size: 16px;
    color: #fff;
}

.jzzs-body .section-e-grid {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    box-sizing: border-box;
    padding-left: 33%;
}

.jzzs-body .section-e-item {
    width: calc(33.3% - 10px);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    margin: 5px;
}

.jzzs-body .section-e-item:hover {
    transform: translateY(-5px);
}

.jzzs-body .section-e-item:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

.jzzs-body .section-e-item:nth-child(1){
    width: calc(33% - 10px);
    position: absolute;
    top: 0;
    left: 0;
}

.jzzs-body .section-e-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.jzzs-body .section-e-item .intro {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 186px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.jzzs-body .section-e-item .intro h4 {
    font-size: 24px;
    color: #fff;
    font-weight: normal;
    margin: 0;
}

.jzzs-body .section-e-item > h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 0;
    font-weight: normal;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    line-height: 68px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.jzzs-body .section-e-item h4 i{   
    font-size: 15px;
    font-style: normal;
}

.jzzs-body .section-e-item p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.jzzs-body .section-e-item .intro button{
    width: 140px;
    height: 50px;
    background: #D61F22;
    border-radius: 10px 10px 10px 10px;
    font-weight: normal;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    margin: 10px 0 0px;
    border: 0;
}
.jzzs-body .section-e2 {   
    padding: 20px 0;
    background-color: #fff;
}
.jzzs-body .section-e2 .img-box {
    width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}
.jzzs-body .section-e2 .img-box ul{
    width: 100%;
    margin: 0 -5px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jzzs-body .section-e2 .img-box li{
    flex: 1;
    list-style: none;
    margin: 0 5px;
}
.jzzs-body .section-e2 .img-box li img{
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s;
}
.jzzs-body .section-e2 .img-box li:hover img{
    transform: translateY(-5px);
}

/* F部分 - 联系我们 */
.jzzs-body .section-f {
    padding: 0;
    background-color: #fff;
}

.jzzs-body .section-f .container {
    width: 1400px;
    padding: 0;
    margin: 0 auto;
}

.jzzs-body .section-f-head {
    text-align: center;
    padding: 40px 0;
    background-color: #fff;
}

.jzzs-body .section-f-head h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #333;
}

.jzzs-body .section-f-head p {
    font-size: 16px;
    margin-bottom: 0;
    color: #333;
}

.jzzs-body .section-f-con {    
    display: flex;
    width: 100%;
    overflow: hidden;
}

.jzzs-body .section-f-con img {
    width: 940px;
    height: auto;
    object-fit: cover;
}

.jzzs-body .section-f-info {
    flex: 1;
    background-color: #D61F22;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jzzs-body .section-f-info h4 {
    font-size: 40px;
    margin-bottom: 20px;
}

.jzzs-body .section-f-info ul {    
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}

.jzzs-body .section-f-info ul li {
    border: 1px solid #fff;
    width: 100px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
}

.jzzs-body .section-f-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.jzzs-body .input-box {
    display: flex;
    gap: 15px;
    margin: 100px 0 20px;
}

.jzzs-body .input-box input {
    padding: 0 15px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 4px;
    width: 180px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    font-size: 20px;
    outline: none;
    box-sizing: border-box;
}

.jzzs-body .input-box input::placeholder { 
    color: rgba(255, 255, 255, 0.8);
}

.jzzs-body .section-f-info button {
    background-color: #fff;
    color: #D61F22;
    border: none;
    box-sizing: border-box;
    height: 62px;
    line-height: 62px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

.jzzs-body .tips {
    font-size: 14px;
    text-align: center;
}

/* G部分 - 新闻资讯 */
.jzzs-body .section-g {
    margin: 40px 0;
    padding: 40px 0;
    background: url('../images/sectiong_bg.png') no-repeat center center;
    background-size: cover;
}
.jzzs-body .section-g .container {
    width: 1400px;
    margin: 0 auto;
}

.jzzs-body .section-g-header {
    text-align: center;
    padding-bottom: 40px;
}

.jzzs-body .section-g-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.jzzs-body .section-g-header p {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
}

.jzzs-body .section-g-grid {   
    display: flex;
    gap: 10px;
}

.jzzs-body .section-g-item {   
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.jzzs-body .section-g-item:hover { 
    transform: translateY(-5px);
}

.jzzs-body .section-g-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    margin: 0 auto;
}

.jzzs-body .section-g-info {   
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.jzzs-body .section-g-info .num {
    font-weight: normal;
    font-size: 26px;
    color: #D0AC7B;
    font-weight: bold;
    margin: 0 10px 0 -10px;
}
.jzzs-body .section-g-info .info {
    flex: 1;
}

.jzzs-body .section-g-info p {
    font-size: 16px;
    color: #FFFFFF;
}

.jzzs-body .section-h {    
    margin: 0 0 40px;
    background-color: #fff;
    padding: 40px 0;
}
.jzzs-body .section-h .container {
    width: 1400px;
    margin: 0 auto;
}
.jzzs-body .section-h-header {
    text-align: center;
    padding-bottom: 40px;
}

.jzzs-body .section-h-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #333;
}

.jzzs-body .section-h-header p {
    font-size: 16px;
    margin-bottom: 0;
    color: #333;
}
.jzzs-body .section-h-ul ul{
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
}
.jzzs-body .section-h-ul li {
    font-size: 22px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    height: 65px;
    line-height: 65px;
    box-sizing: border-box;
    /* padding: 0 15px; */
    margin-right: 50px;
    cursor: pointer;
}
.jzzs-body .section-h-ul li.active {
    color: #D61F22;
    border-bottom: 2px solid #D61F22;
}
.jzzs-body .section-h-con {
    display: flex;
    gap: 10px;
}
.jzzs-body .section-h-item {
    flex: 1;
}
.jzzs-body .section-h-item .num {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000;
    font-weight: bold;
    text-align: left;
}
.jzzs-body .section-h-item i {
    font-size: 20px;
    color: #D61F22;
    font-style: normal;
}
.jzzs-body .section-h-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 30px auto;
}
.jzzs-body .section-h-item h3 {
    font-size: 18px;
    color: #333;
}
.jzzs-body .section-h-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: #333;
}

/* 页脚 */
.jzzs-body .footer-section {
    background: url('../images/footer_bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 60px 0 30px;
}
.jzzs-body .footer-section .container {
    width: 1400px;
    margin: 0 auto;
}

.jzzs-body .footer-section .logo {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #e60000;
}
.jzzs-body .footer-section .logo span {
    color: #fff;
    font-size: 16px;
}
.jzzs-body .footer-section .nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.jzzs-body .footer-section .nav-item {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}
.jzzs-body .footer-section .nav-item h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}
.jzzs-body .footer-section .nav-item ul {
    list-style: none;
    padding: 0;
}
.jzzs-body .footer-section .nav-item li {
    margin-bottom: 15px;
}
.jzzs-body .footer-section .nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.jzzs-body .footer-section .contact {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.jzzs-body .footer-section .contact-info {
    margin-right: 40px;
}
.jzzs-body .footer-section .contact-info h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}
.jzzs-body .footer-section .contact-info p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}
.jzzs-body .footer-section .contact-info .phone {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}
.jzzs-body .footer-section .contact-info .btn {
    background-color: #e60000;
    color: white;
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}
.jzzs-body .footer-section .qrcode {
    margin-right: 40px;
    text-align: center;
}
.jzzs-body .footer-section .qrcode img {
    width: 120px;
    height: 120px;
    margin-top: 20px;
}
.jzzs-body .footer-section .douyin {
    margin-right: 40px;
    text-align: center;
}
.jzzs-body .footer-section .douyin img {
    width: 120px;
    height: 120px;
    margin-top: 20px;
}
.jzzs-body .footer-section .footer {
    margin-top: 30px;
    padding-top: 20px;
    font-size: 14px;
    color: #fff;
}
.jzzs-body .footer-section .friend-link {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #BEBEBE;
    font-size: 18px;
    padding-bottom: 20px;
}
.jzzs-body .footer-section .friend-link a {
    text-decoration: none;
    color: #fff;
}
.jzzs-body .footer-section .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
}

.jzzs-body .section-i {    
    position: relative;
    height: 130px;
    background-color: #000;
}
.jzzs-body .section-i .head_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 715px;
    height: auto;
    object-fit: cover;
    z-index: 1;
}
.jzzs-body .section-i .container {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.jzzs-body .section-i .left-section {  
    width: 450px;
    display: flex;
    align-items: center;
    color: white;
}
.jzzs-body .section-i .left-section img {
    width: 100px;
    height: auto;
    margin-right: 15px;
}
.jzzs-body .section-i .left-section h2 {
    font-size: 28px;
    margin: 0;
    font-style: italic;
}
.jzzs-body .section-i .left-section p {
    font-size: 16px;
    margin: 10px 0 0;
}
.jzzs-body .section-i .right-section {  
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}
.jzzs-body .section-i .input-group {
    margin-right: 10px;
}
.jzzs-body .section-i .input-group input {
    width: 220px;
    height: 64px;
    line-height: 64px;
    background-color: #fff;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    text-align: center;
}
.jzzs-body .section-i .btn {
    background-color: #e60000;
    color: white;
    width: 220px;
    height: 64px;
    line-height: 64px;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.jzzs-body .section-i .btn:hover {
    background-color: #c00;
}
.jzzs-body .section-i .btn i {
    margin-right: 5px;
}

.jzzs-body .swiper-pagination-bullet-active {
    background: #fff !important;
}
.jzzs-body .swiper-pagination-bullet{
    width: 16px !important;
    height: 16px !important;
    background: rgba(255,255,255,0.6);
}
.jzzs-body .swiper-button-next, .swiper-button-prev{
    color: #fff !important;
}