.w1440 {
    width: 1440px;
    margin: auto;
}

header {
    border-top: 3px #e60012 solid;
}

header .nav {
    height: 112px;
}

header .nav .logo img {
    width: auto;
}

header .nav ul {
    flex: 1;
    display: flex;
    justify-content: center;
}

header .nav ul li {
    margin: 0 1.5rem;
}

header .nav ul li a {
    font-size: 18px;
    color: #222;
}

header .nav ul li a:hover {
    color: #e60012;
}

header .nav ul li.active a {
    color: #e60012;
}

header .nav .info {
    display: flex;
    align-items: center;
}

header .nav .info .code {
    position: relative;
}

header .nav .info .code .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    overflow: hidden;
    color: #adadad;
}

header .nav .info .code img {
    display: none;
}

header .nav .info .tel {
    padding: 0 1rem;
    margin: 0 1rem;
    border-left: 1px #e7e7e7 solid;
    border-right: 1px #e7e7e7 solid;
    display: flex;
    align-items: center;
}

header .nav .info .tel img {
    width: 22px;
}

header .nav .info .tel p {
    font-size: 1.5rem;
    color: #e60012;
    line-height: 1.5rem;
    margin-left: 10px;
}

header .nav .info .search .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    overflow: hidden;
    color: #adadad;
}

.menu-container-mask {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.2s;
}

.menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}

.top-menu-list {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.2s;
}

.top-menu-list.active {
    transform: translateX(-100%);
}

.top-menu-list>li {
    height: 48px;
    line-height: 48px;
}

.top-menu-list>li li:first-child,
.top-menu-list>li:first-child {
    height: 45px;
}

.top-menu-list>li li:first-child>a,
.top-menu-list>li:first-child>a {
    background-color: #f7f7f7;
    height: 45px;
}

.top-menu-list>li a {
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-menu-list ul {
    position: absolute;
    left: 100%;
    width: 100%;
    background-color: #fff;
    top: 0;
    height: 100%;
    display: none;
}

.top-menu-list ul.active {
    display: block;
}


/*鍏叡鏍峰紡*/

.ho-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: auto;
    min-height: auto;
    width: 100%;
    height: 100%;
    transform: none;
    transition: transform 0.5s ease;
    object-fit: cover;
    max-height: 100%;
}

.ho-a {
    width: 230px;
    height: 60px;
    background: #e60012;
    border-radius: 30px;
    margin: auto;
    color: #fff;
}

.more a,
.more button {
    min-width: 230px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e60012;
    border-radius: 30px;
    color: #fff;
    transition: opacity 0.5s;
    position: relative;
    overflow: hidden;
}

.more a .anim,
.more button .anim {
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.more a .anim::before,
.more button .anim::before {
    position: relative;
    content: '';
    display: block;
    margin-top: 100%;
}

.more a .anim::after,
.more button .anim::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
}

.more a:hover .anim,
.more button:hover .anim {
    animation: anim-out 1s;
}

.more a:hover .anim::after,
.more button:hover .anim::after {
    animation: anim-out-pseudo 1s;
}

@keyframes anim-out-pseudo {
    0% {
        background: rgba(0, 0, 0, 0.25);
    }
    100% {
        background: transparent;
    }
}

@keyframes anim-out {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.font-30 {
    font-size: 1.875rem;
}

.font-36 {
    font-size: 2.25rem;
}

.font-48 {
    font-size: 3rem;
}

.pd-70 {
    padding: 4.375rem 0;
}

.pd-40 {
    padding: 2.5rem 0;
}

.mt-32 {
    margin-top: 2rem;
}

.pd-48 {
    padding: 3rem 0;
}

.md-t-48 {
    margin-top: 3rem !important;
}

.bk-f1 {
    background: #f1f1f1;
}

.common-title {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.common-title .title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common-title .title span {
    flex-grow: 1;
    flex: 1;
    height: 1px;
    background: #e5e5e5;
    position: relative;
}

.common-title .title .left-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    bottom: -2px;
    width: 5px;
    background: #e60012;
}

.common-title .title .right-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    bottom: -2px;
    width: 5px;
    background: #e60012;
}

.common-title .title h2 {
    font-size: 2.5rem;
    color: #222222;
    line-height: 2.5rem;
    padding: 0 1rem;
}

.common-title h5 {
    font-size: 1rem;
    color: #666;
    margin-top: 6px;
}

.common-title p {
    font-size: 1.125rem;
    color: #666;
    margin-top: 1rem;
}

.program-title {
    display: flex;
    align-items: center;
}

.program-title span {
    flex-grow: 1;
    flex: 1;
    height: 1px;
    background: #e5e5e5;
    position: relative;
}

.program-title .title {
    padding: 0 1rem;
}

.program-title .title h2 {
    font-size: 4.5rem;
    color: #e60012;
    line-height: 4.5rem;
    margin-right: 6px;
}

.program-title .title p {
    font-size: 2.625rem;
    color: #222;
}

.program-title .title i {
    font-size: 0.875rem;
    color: #666;
}

.program-p {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #666;
}

.about-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-title h2 {
    font-size: 2.5rem;
    color: #222;
}

.about-title p {
    font-size: 1.125rem;
    color: #666;
    margin: 10px 0 1.875rem;
}

.about-title span {
    width: 56px;
    height: 2px;
    background: #e60012;
}


/*棣栭〉banner*/

.home-banner img {
    width: 100%;
    display: block;
}

.home-banner .index-pagination {
    bottom: 0 !important;
    display: flex;
    justify-content: center;
}

.home-banner .index-pagination span {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 0;
    margin: 0 2px 0 0 !important;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.home-banner .index-pagination .swiper-pagination-bullet-active {
    background: #e60012;
}


/* 鍏ㄧ綉钀ラ攢鏈嶅姟妗堜緥 */

.home-case ol {
    display: flex;
    justify-content: space-between;
}

.home-case ol li {
    flex: 1;
    border-left: 1px #c3c3c3 dashed;
}

.home-case ol li:first-child {
    border-left: none;
}

.home-case ol li a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-case ol li a .img {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-case ol li a .img img {
    max-width: 100%;
    max-height: 100%;
}

.home-case ol li a .img .a {
    display: block;
}

.home-case ol li a .img .b {
    display: none;
}

.home-case ol li a .text {
    padding-left: 10px;
}

.home-case ol li a .text h3 {
    font-size: 1.125rem;
    color: #222;
}

.home-case ol li a .text h5 {
    font-size: 14px;
    color: #999;
}

.home-case ol li a:hover .a,
.home-case ol li.active a .a {
    display: none;
}

.home-case ol li a:hover .b,
.home-case ol li.active a .b {
    display: block;
}

.home-case ol li a:hover h3,
.home-case ol li.active a h3,
.home-case ol li a:hover h5,
.home-case ol li.active a h5 {
    color: #e60012;
}

.list-case .list-nav-item {
    display: none;
}

.list-case .list-nav-item.active {
    display: block;
}

.list-case ul li .img {
    position: relative;
    height: 20.875rem;
    overflow: hidden;
}

.list-case ul li .img .mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: all 0.5s;
    opacity: 0;
    background: rgba(226, 8, 25, 0.8);
}

.list-case ul li .img .mask img {
    width: 3.75rem;
    height: 3.75rem;
}

.list-case ul li .text {
    padding-top: 1.4rem;
}

.list-case ul li h4 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
    font-size: 1.125rem;
    color: #222;
}

.list-case ul li p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
    font-size: 0.875rem;
    color: #999;
}

.list-case ul li .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    overflow: hidden;
    color: #999;
    margin-top: 0.8rem;
}

.list-case ul li:hover .img>img {
    transform: scale(1.1);
}

.list-case ul li:hover .mask {
    transform: scale(1);
    opacity: 1;
}

.home-service {
    background: url(../images/service.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.home-service .common-title span {
    background: #474747;
}

.home-service .common-title h2 {
    color: #fff;
}

.home-service .common-title h5 {
    color: rgba(255, 255, 255, 0.25);
}

.home-service .common-title p {
    color: rgba(255, 255, 255, 0.6);
}

.home-service .content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.home-service .content .line {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 100px 0;
}

.home-service .content img {
    width: auto;
    max-width: 100%;
    display: block;
}

.home-service .content .text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 360px;
    height: 360px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-service .content .text h3 {
    color: #fff;
    line-height: 3.75rem;
    font-weight: bold;
}

.home-service .content .text ol {
    padding: 1rem 0 2.4rem;
    display: flex;
    justify-content: center;
}

.home-service .content .text ol li {
    display: flex;
    align-items: center;
    padding: 0 6px;
}

.home-service .content .text ol li img {
    width: auto;
}

.home-service .content .text ol li p {
    font-size: 1rem;
    color: #fff;
    margin-left: 4px;
}

.home-service .content .text .link {
    display: flex;
    justify-content: center;
}

.home-service .content .text .link a {
    border: 1px #fff solid;
    width: 126px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    color: #fff;
    margin: 0 8px;
}

.home-service .content .text .link a:first-child {
    background: #fff;
    color: #e60012;
}

.home-service .content ul li {
    position: absolute;
    display: flex;
    align-items: center;
    min-width: 222px;
}

.home-service .content ul li div {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-service .content ul li div img {
    max-width: 60%;
    max-height: 60%;
}

.home-service .content ul li p {
    font-size: 1.125rem;
    color: #fff;
}

.home-service .content ul li:nth-child(1) {
    left: 41.8%;
    top: 0;
}

.home-service .content ul li:nth-child(2) {
    left: 85%;
    top: 15%;
}

.home-service .content ul li:nth-child(3) {
    left: 99.8%;
    top: 42.7%;
}

.home-service .content ul li:nth-child(4) {
    left: 85%;
    bottom: 15%;
}

.home-service .content ul li:nth-child(5) {
    left: 21.8%;
    bottom: 0;
}

.home-service .content ul li:nth-child(6) {
    right: 77%;
    bottom: 15%;
}

.home-service .content ul li:nth-child(7) {
    right: 92%;
    top: 42.7%;
}

.home-service .content ul li:nth-child(8) {
    right: 77%;
    top: 15%;
}

.home-Cooperation ul {
    display: flex;
}

.home-Cooperation ul li {
    flex: 1;
    background: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 46px 0 40px;
    margin-left: 6px;
    position: relative;
    transition: 0.5s;
}

.home-Cooperation ul li::before {
    content: '';
    position: absolute;
    left: calc(100% - 15px);
    top: calc(50% - 15px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: url(../images/icon/left.png) #fff no-repeat;
    background-position: center;
    z-index: 1;
}

.home-Cooperation ul li:last-child::before {
    content: none;
}

.home-Cooperation ul li:first-child {
    margin-left: 0;
}

.home-Cooperation ul li span {
    color: #ff6600;
}

.home-Cooperation ul li h3 {
    font-size: 1.25rem;
    color: #222;
    margin: 1rem 0 4px;
}

.home-Cooperation ul li p {
    font-size: 1rem;
    color: #222;
}

.home-Cooperation ul li:hover {
    background: #ff6600;
}


.home-Cooperation ul li:nth-child(2){
background: #ff6600;
}





.home-Cooperation ul li:nth-child(2):hover{
background: #e5e5e5;
}


.home-Cooperation ul li:nth-child(2):hover .font-48{
color: #ff6600;
}


.home-Cooperation ul li:nth-child(2):hover h3{
color: #000;
}
.home-Cooperation ul li:nth-child(2):hover p{
color: #000;
}


.home-Cooperation ul li:nth-child(4):hover{
background: #e5e5e5;
}


.home-Cooperation ul li:nth-child(4):hover .font-48{
color: #ff6600;
}


.home-Cooperation ul li:nth-child(4):hover h3{
color: #000;
}
.home-Cooperation ul li:nth-child(4):hover p{
color: #000;
}


.home-Cooperation ul li:nth-child(6):hover{
background: #e5e5e5;
}


.home-Cooperation ul li:nth-child(6):hover .font-48{
color: #ff6600;
}


.home-Cooperation ul li:nth-child(6):hover h3{
color: #000;
}
.home-Cooperation ul li:nth-child(6):hover p{
color: #000;
}







.home-Cooperation ul li:nth-child(2) span,
.home-Cooperation ul li:nth-child(2) h3,
.home-Cooperation ul li:nth-child(2) p {
    color: #fff;
}

.home-Cooperation ul li:nth-child(4){
background: #ff6600;
}


.home-Cooperation ul li:nth-child(4) span,
.home-Cooperation ul li:nth-child(4) h3,
.home-Cooperation ul li:nth-child(4) p {
    color: #fff;
}

.home-Cooperation ul li:nth-child(6){
background: #ff6600;
}


.home-Cooperation ul li:nth-child(6) span,
.home-Cooperation ul li:nth-child(6) h3,
.home-Cooperation ul li:nth-child(6) p {
    color: #fff;
}


.home-Cooperation ul li:hover span,
.home-Cooperation ul li:hover h3,
.home-Cooperation ul li:hover p {
    color: #fff;
}

.home-about {
    background: #e5e5e5;
    position: relative;
}

.home-about .left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.home-about .left a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.home-about .left a img {
    width: 64px;
}

.home-about .content {
    display: flex;
    justify-content: flex-end;
}

.home-about .content .right {
    width: 50%;
    border-right: 1px #d4d4d4 solid;
    position: relative;
}

.home-about .content .right::before {
    content: 'About Us';
    position: absolute;
    left: calc(100% - 50px);
    top: 20%;
    width: 100px;
    transform: rotate(90deg);
    text-align: center;
    font-size: 1rem;
    color: #c3c3c3;
    background: #e5e5e5;
}

.home-about .content .right h2 {
    font-size: 2.625rem;
    color: #222;
    font-weight: bold;
    margin-left: 3rem;
}

.home-about .content .right h3 {
    color: #222;
    margin-left: 3rem;
}

.home-about .content .right .desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.875rem;
    padding: 1rem 0 2.5rem;
    width: 84%;
    margin-left: 3rem;
}

.home-about .content .right ul {
    display: flex;
    justify-content: space-between;
}

.home-about .content .right ul li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1.875rem 0;
    border-right: 1px #c3c3c3 dashed;
}

.home-about .content .right ul li h4 {
    display: flex;
    align-items: flex-start;
    font-size: 14/16rem;
    color: #e60012;
}

.home-about .content .right ul li p {
    font-size: 0.8rem;
    color: #222;
}

.home-about .content .right ul li:first-child {
    background: #e60012;
    border-right: none;
    position: relative;
}

.home-about .content .right ul li:first-child div {
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    padding-left: 3rem;
    width: 290px;
}

.home-about .content .right ul li:first-child div span {
    font-size: 1.25rem;
    color: #fff;
}

.home-about .content .right ul li:first-child div .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    overflow: hidden;
    color: #fff;
    margin-top: 6px;
}

.home-about .content .right ul li:first-child h4 {
    color: #fff;
    font-size: 0.75rem;
}

.home-about .content .right ul li:first-child h4 i {
    margin-right: 6px;
}

.home-about .content .right ul li:first-child p {
    color: #fff;
}

.home-about .content .right ul li:last-child {
    border-right: none;
}

.home-news .news-nav {
    border-bottom: 1px #e5e5e5 solid;
}

.home-news .news-nav ul li h3 {
    color: #222;
    padding-bottom: 1rem;
    position: relative;
}

.home-news .news-nav ul li h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #e60012;
    transition: 0.5s width;
}

.home-news .news-nav ul li p {
    font-size: 1rem/#666;
    color: #333;
    padding-bottom: 1rem;
    margin-left: 10px;
}

.home-news .news-nav ul li:last-child {
    padding-right: none;
}

.home-news .news-nav ul li:hover h3,
.home-news .news-nav ul li .active h3 {
    color: #e60012;
}

.home-news .news-nav ul li:hover h3::before,
.home-news .news-nav ul li .active h3::before {
    width: 100%;
}

.home-news .news-nav .more .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    overflow: hidden;
    color: #999;
}

.home-news .news-nav .more:hover .icon {
    color: #e60012;
}

.home-news .home-news-content ul li .item .top .img {
    height: 21rem;
    position: relative;
}

.home-news .home-news-content ul li .item .top .img .text {
    width: 70px;
    height: 70px;
    background: rgba(230, 0, 18, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    flex-direction: column;
}

.home-news .home-news-content ul li .item .top .img .text span {
    color: #fff;
}

.home-news .home-news-content ul li .item .top .img .text i {
    font-size: 0.75rem;
    color: #fff;
}

.home-news .home-news-content ul li .item .top h4 {
    font-size: 18/16rem;
    color: #333;
    margin: 24px 0 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.home-news .home-news-content ul li:hover .item .top h4 {
    color: #e60012;
}

.home-news .home-news-content ul li .item .top p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 48px;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
    font-size: 14px;
    color: #999;
    line-height: 24px;
    margin-bottom: 1rem;
}

.home-news .home-news-content ul li .item ol li {
    background: url(../images/icon/sjx.png) no-repeat;
    background-position-y: center;
    border-top: 1px #c3c3c3 dashed;
}

.home-news .home-news-content ul li .item ol li:last-child {
    border-bottom: 1px #c3c3c3 dashed;
}

.home-news .home-news-content ul li .item ol li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    padding-left: 10px;
}

.home-news .home-news-content ul li .item ol li h4 {
    font-size: 1rem;
    color: #666;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.home-news .home-news-content ul li .item ol li span {
    font-size: 0.8rem;
    color: #999;
}

.home-news .home-news-content ul li .item ol li:hover h4 {
    color: #e60012;
}

footer {
    background: #222;
}

footer .foot-nav ul {
    display: flex;
}

footer .foot-nav ul li {
    margin-right: 90px;
}

footer .foot-nav ul li:last-child {
    margin-right: 0;
}

footer .foot-nav ul li h3 {
    font-size: 1.125rem;
    color: #fff;
    padding-bottom: 14px;
    margin-bottom: 14px;
    position: relative;
}

footer .foot-nav ul li h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1rem;
    background: #fff;
    height: 1px;
}

footer .foot-nav ul li h3 a {
    font-size: 1.125rem;
    color: #fff;
}

footer .foot-nav ul li h3 a:hover {
    color: rgba(255, 255, 255, 0.8);
}

footer .foot-nav ul li>a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.875rem;
    display: block;
}

footer .foot-nav ul li h2 {
    font-size: 2.625rem;
    color: #fff;
}

footer .foot-nav ul li p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.875rem;
}

footer .foot-nav .code {
    display: flex;
    justify-content: flex-end;
}

footer .foot-nav .code div {
    margin-left: 22px;
}

footer .foot-nav .code div:first-child {
    margin-left: 0;
}

footer .foot-nav .code div img {
    width: 108px;
    height: 108px;
    display: block;
}

footer .foot-nav .code div p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.875rem;
    text-align: center;
}

footer .links {
    display: flex;
    padding-bottom: 1rem;
    width: 100%;
    line-height: 30px;
}

footer .links span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

footer .links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-right: 10px;
}

footer .links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

footer .copyright {
    padding: 24px 0;
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
}

footer .copyright p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 1rem;
}

footer .copyright a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 1rem;
}

footer .copyright a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.list-nav {
    background: #fff;
}

.list-nav a {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #222;
}

.list-nav a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    right: 50%;
    height: 2px;
    background: #e60012;
    transition: left 0.5s, right 0.5s;
}

.list-nav a:hover,
.list-nav a.active {
    color: #e60012;
}

.list-nav a:hover::before,
.list-nav a.active::before {
    left: 0;
    right: 0;
}

.position {
    background: #fff;
}

.position ol {
    height: 70px;
    margin-bottom: 0;
    align-items: center;
}

.position ol li {
    color: #e60012;
    font-size: 1rem;
}

.position ol li a {
    color: #666;
    font-size: 1rem;
}

.position ol li a .icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    overflow: hidden;
    color: #666;
    padding-bottom: 2px;
}

.position ol li a:hover {
    color: #e60012;
}

.position ol li a:hover .icon {
    color: #e60012;
}

.position .breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, ">");
}


/* 鍏ㄧ綉钀ラ攢鏂规 */

.program-1 ul li {
    position: relative;
    margin-top: 3.125rem;
    display: flex;
}

.program-1 ul li .content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.program-1 ul li .text {
    padding: 3.125rem 3.5rem 0 0;
    width: 50%;
}

.program-1 ul li .text img {
    width: 5rem;
    height: auto;
    margin-right: 1.875rem;
}

.program-1 ul li .text .desc {
    flex: 1;
}

.program-1 ul li .text h3 {
    font-size: 1.875rem;
    color: #222;
    margin-bottom: 1rem;
}

.program-1 ul li .text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.75rem;
}

.program-1 ul li .text p span {
    font-size: 1rem;
    color: #e60012;
}

.program-1 ul li .img {
    width: 50%;
}

.program-1 ul li .img img {
    width: 100%;
}

.program-1 ul li:nth-child(odd) {
    flex-direction: row-reverse;
}

.program-1 ul li:nth-child(even) .content>div {
    display: flex;
    flex-direction: row-reverse;
}

.program-1 ul li:nth-child(even) .content>div .text {
    padding: 3.125rem 0 0 3.5rem;
}

.program-2 ul li {
    margin-bottom: 1.875rem;
}

.program-2 ul li .item {
    background: #eee;
    padding: 50px;
    transition: background 0.5s;
}

.program-2 ul li .item i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background: #fff;
    position: relative;
    z-index: 1;
}

.program-2 ul li .item i::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 165px;
    height: 165px;
    background: url(../images/shadown.png) no-repeat;
    z-index: -1;
}

.program-2 ul li .item i img {
    max-width: 80%;
    max-height: 80%;
}

.program-2 ul li .item .desc {
    flex: 1;
    padding-left: 3rem;
}

.program-2 ul li .item .desc h3 {
    color: #222;
}

.program-2 ul li .item .desc p {
    font-size: 1rem;
    color: #666;
    line-height: 1.75rem;
    margin-top: 1rem;
    min-height: 6.25rem;
}

.program-2 ul li .item .desc .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    overflow: hidden;
    color: #666;
}

.program-2 ul li .item:hover {
    background: #e60012;
}

.program-2 ul li .item:hover .desc h3,
.program-2 ul li .item:hover .desc p,
.program-2 ul li .item:hover .desc .icon {
    color: #fff;
}

.program-3 ul {
    position: relative;
    flex-wrap: wrap;
    padding: 0 2.25rem;
}

.program-3 ul::before {
    content: '';
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 4px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dcdcdc;
}

.program-3 ul li {
    width: 50%;
    padding: 2.6rem 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-left: -2px;
    margin-bottom: -2px;
    position: relative;
}

.program-3 ul li::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2rem;
    background: #dcdcdc;
}

.program-3 ul li .desc h3 {
    color: #e60012;
    margin-bottom: 1rem;
}

.program-3 ul li .desc p {
    font-size: 1rem;
    color: #666;
    line-height: 1.625rem;
}

.program-3 ul li .img {
    height: 18.125rem;
}

.program-3 ul li .img img {
    max-width: 100%;
    max-height: 100%;
}

.program-3 ul li i {
    position: absolute;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-3 ul li i .icon {
    width: 4.5rem;
    height: 4.5rem;
    fill: currentColor;
    overflow: hidden;
    color: #e60012;
}

.program-3 ul li i span {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.625rem;
    color: #fff;
}

.program-3 ul li:nth-child(even) {
    flex-direction: column-reverse;
}

.program-3 ul li:nth-child(1) {
    border: 2px #dcdcdc solid;
    border-left: none;
}

.program-3 ul li:nth-child(odd)::before {
    top: 0;
    left: -1px;
}

.program-3 ul li:nth-child(odd) i {
    left: -2.25rem;
    top: 2rem;
}

.program-3 ul li:nth-child(even)::before {
    right: -1px;
    bottom: -1px;
    height: 4rem;
}

.program-3 ul li:nth-child(even) i {
    right: -2.25rem;
    bottom: 4rem;
}

.program-3 ul li:nth-child(4) {
    border: 2px #dcdcdc solid;
    border-right: none;
}

.program-4 .content {
    position: relative;
}

.program-4 .content ul li .img {
    height: 18.125rem;
    border: 5px #eee solid;
    border-radius: 2px;
    position: relative;
}

.program-4 .content ul li h3 {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.125rem;
    color: #222;
}

.program-4 .content .program-pagination {
    display: none;
    justify-content: center;
    margin-top: 40px;
}

.program-4 .content .program-pagination span {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #eee;
}

.program-4 .content .program-pagination .swiper-pagination-bullet-active {
    background: #e60012;
}

.program-4 .content .program-button-prev {
    position: absolute;
    left: -5rem;
    top: calc(50% - 40px);
}

.program-4 .content .program-button-prev .icon {
    width: 80px;
    height: 80px;
    fill: currentColor;
    overflow: hidden;
    color: #e0e0e0;
}

.program-4 .content .program-button-prev .icon:hover {
    color: #e60012;
}

.program-4 .content .program-button-next {
    position: absolute;
    right: -5rem;
    top: calc(50% - 40px);
}

.program-4 .content .program-button-next .icon {
    width: 80px;
    height: 80px;
    fill: currentColor;
    overflow: hidden;
    color: #e0e0e0;
}

.program-4 .content .program-button-next .icon:hover {
    color: #e60012;
}


/* 鍏充簬鎴戜滑 */

.vwrap {
    display: none;
}

.vwrap .videobtg {
    z-index: 900;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.7;
    filter: alpha(opacity=70);
    overflow: hidden;
}

.vwrap .videobox {
    z-index: 990;
    padding: 0 50px;
    width: 1100px;
    height: 770px;
    background: #fff url(../images/about.png) no-repeat right top;
    background-size: 14%;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -385px;
    margin-left: -600px;
}

.grzx_grjj h3 {
    padding-bottom: 30px;
    padding-top: 50px;
    font-size: 30px;
    color: #333;
    text-align: left;
}

.grzx_grjj i {
    display: inline-block;
    margin-left: 50px;
    width: 80px;
    height: 2px;
    background-color: #ddd;
    margin-bottom: 10px;
}

.grzx_grjj p {
    font-size: 14px;
    line-height: 30px;
    color: #666;
    padding-bottom: 14px;
}

.vwrap .close {
    z-index: 999;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: -38px;
    right: -40px;
}

.vwrap .close .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    overflow: hidden;
    color: #e0e0e0;
    transition: transform .5s;
}

.vwrap .close .icon:hover {
    transform: rotate(180deg)
}

.about-page {
    background: #f1f1f1;
    padding-top: 2rem;
}

.about-1 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
}

.about-1 .desc {
    width: 80%;
    margin: auto;
    font-size: 1.25rem;
    color: #222;
    line-height: 2rem;
    padding: 1.375rem 0;
}

.about-1 .content {
    font-size: 1rem;
    color: #666;
    line-height: 2rem;
}

.about-1 ul {
    justify-content: space-around;
}

.about-1 ul li {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.about-1 ul li h4 {
    font-size: 1.125rem;
    color: #e60012;
}

.about-1 ul li h4 i {
    font-size: 4rem;
    color: #e60012;
    line-height: 4rem;
}

.about-1 ul li:first-child h4 {
    font-size: 0.875rem;
}

.about-1 ul li:first-child h4 i {
    padding-right: 4px;
}

.about-2 ul li .img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.about-2 ul li .text {
    padding: 1.75rem;
}

.about-2 ul li .text h4 {
    font-weight: bold;
    font-size: 24px;
}

.about-2 ul li .text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6rem;
    margin-top: 0.6rem;
    min-height: 80px;
}

.about-2 .course-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.about-2 .course-pagination span {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #fff;
}

.about-2 .course-pagination .swiper-pagination-bullet-active {
    background: #e60012;
}

.about-3 ul li {
    display: flex;
    padding: 0;
}

.about-3 ul li .img {
    width: 50%;
}

.about-3 ul li .img img {
    width: 100%;
    display: block;
}

.about-3 ul li .text {
    width: 50%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-3 ul li .text span {
    font-size: 1rem;
    color: #999;
    margin: 8px 0 1rem;
}

.about-3 ul li .text p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6rem;
}

.about-3 ul li:nth-child(3) {
    flex-direction: row-reverse;
}

.about-3 ul li:nth-child(4) {
    flex-direction: row-reverse;
}

.about-4 .content {
    position: relative;
}

.about-4 .content ul li {
    background: #fff;
    padding: 1.2rem;
    transition: background 0.5s;
    cursor: pointer;
}

.about-4 .content ul li .img {
    position: relative;
    height: 23.875rem;
}

.about-4 .content ul li h4 {
    padding: 1.875rem;
    font-size: 1.125rem;
    color: #666;
}

.about-4 .content ul li:hover {
    background: #e60012;
}

.about-4 .content ul li:hover h4 {
    color: #fff;
}

.about-4 .content .honor-pagination {
    display: none;
    justify-content: center;
    margin-top: 40px;
}

.about-4 .content .honor-pagination span {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #fff;
}

.about-4 .content .honor-pagination .swiper-pagination-bullet-active {
    background: #e60012;
}

.about-4 .content .honor-button-prev {
    position: absolute;
    left: -5rem;
    top: calc(50% - 40px);
}

.about-4 .content .honor-button-prev .icon {
    width: 80px;
    height: 80px;
    fill: currentColor;
    overflow: hidden;
    color: #e0e0e0;
}

.about-4 .content .honor-button-prev .icon:hover {
    color: #e60012;
}

.about-4 .content .honor-button-next {
    position: absolute;
    right: -5rem;
    top: calc(50% - 40px);
}

.about-4 .content .honor-button-next .icon {
    width: 80px;
    height: 80px;
    fill: currentColor;
    overflow: hidden;
    color: #e0e0e0;
}

.about-4 .content .honor-button-next .icon:hover {
    color: #e60012;
}


/* 鏈嶅姟璇︽儏 */

.case-page {
    padding: 2rem 0 3rem;
}

.case-page h2 {
    color: #222;
    margin-bottom: 1rem;
}

.case-page .content1 {
    padding: 0 70px;
}

.case-page .content1 p {
    font-size: 1rem;
    color: #666;
    line-height: 1.875rem;
}

.case-page .content2 {
    padding: 0 70px;
}

.case-page .content2 img {
    width: 100%;
}

.case-page .content2 p {
    display: inline-block;
    background: #000;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 2.2rem;
    padding: 0 1.2rem;
}

.case-page .content3 {
    padding: 0 70px;
}

.case-page .content3 ul li {
    display: flex;
    align-items: center;
    padding: 2.25rem;
    border-radius: 6px;
    border: 1px #c3c3c3 dashed;
    margin-bottom: 2rem;
}

.case-page .content3 ul li>p {
    font-size: 4.5rem;
    color: #222;
    margin-right: 1.8rem;
}

.case-page .content3 ul li div h4 {
    font-size: 1.375rem;
    color: #222;
    margin-bottom: 6px;
}

.case-page .content3 ul li div p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8rem;
}

.case-page .content4 {
    border: 20px solid #fff;
    border-radius: 16px;
    padding: 30px 0;
}

.case-page .content4 .xgcx-container {
    height: 600px;
}

.case-page .content4 .xgcx-container .swiper-slide {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
}

.case-page .content4 .xgcx-container .swiper-slide img {
    max-width: 90%;
    max-height: 90%;
}

.case-page .content4 .xgcx-container .swiper-xgcx-prev,
.case-page .content4 .xgcx-container .swiper-xgcx-next {
    color: #999;
    font-weight: bold;
}

.case-page .content4 .xgcx-container .swiper-xgcx-prev:hover,
.case-page .content4 .xgcx-container .swiper-xgcx-next:hover {
    color: #e60012;
}

.case-page .content4 .xgcx-container .swiper-pagination-bullet-active {
    background: #e60012;
}

.case-page .more a {
    min-width: 390px;
}

.contact-page ul li .item {
    display: flex;
    align-items: center;
}

.contact-page ul li .item i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px #2a1f1c solid;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.contact-page ul li .item i img {
    max-width: 60%;
    max-height: 60%;
}

.contact-page ul li .item div {
    flex: 1;
}

.contact-page ul li .item p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 8px;
}

.contact-page ul li .item h4 {
    color: #222;
    font-size: 28px;
}

.contact-page .map {
    position: relative;
}

.contact-page .map img {
    width: 100%;
    display: block;
}

.contact-page .map .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.4rem;
}

.contact-page .map .content p {
    font-size: 1.2rem;
    color: #fff;
}

.contact-page .map .content .more a {
    min-width: 188px;
    height: 40px;
    font-size: 1.5rem;
}

.list-news ul li {
    margin-bottom: 1.8rem;
    background: #fff;
}

.list-news ul li a {
    padding: 50px 70px;
}

.list-news ul li .img {
    width: 380px;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.list-news ul li .desc {
    flex: 1;
    border-right: 1px #c3c3c3 dashed;
    padding: 0 2rem;
}

.list-news ul li .desc h3 {
    font-size: 1.5rem;
    color: #222;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.list-news ul li .desc p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8rem;
    margin: 1rem 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.list-news ul li .desc .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    overflow: hidden;
    color: #666;
}

.list-news ul li .times {
    padding-left: 3rem;
}

.list-news ul li .times h4 {
    font-size: 4rem;
    color: #e60012;
}

.list-news ul li .times p {
    font-size: 1.2rem;
    color: #e60012;
}

.list-news ul li:hover .icon {
    color: #e60012;
}

.list-news ul li:hover h3 {
    color: #e60012;
}

.page-news .content {
    padding: 50px 2.2rem 2rem;
}

.page-news .content h1 {
    font-size: 1.8rem;
    color: #222;
}

.page-news .content .info {
    border-bottom: 1px #ddd dashed;
}

.page-news .content .info p {
    font-size: 1rem;
    color: #999;
    margin: 0 1rem;
}

.page-news .content .text {
    padding: 2rem 0;
}

.page-news .content .text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8rem;
}

.page-news .content .text img {
    max-width: 100%;
}

.page-news .content .news-detail-page {
    padding-top: 1.5rem;
    border-top: 1px #ddd dashed;
}

.page-news .content .news-detail-page .prev-next p {
    font-size: 1rem;
    color: #999;
    line-height: 2rem;
}

.page-news .content .news-detail-page .prev-next p a {
    font-size: 1rem;
    color: #999;
}

.page-news .content .news-detail-page .prev-next p a:hover {
    color: #e60012;
}

.page-news .content .news-detail-page .back {
    width: 140px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
    background: #999;
}

.page-news .content .news-detail-page .back:hover {
    background: #e60012;
}

.page-news .hot-news {
    padding: 20px 30px;
}

.page-news .hot-news h2 {
    border-bottom: 1px #e0e0e0 solid;
    padding-bottom: 12px;
    font-size: 1.5rem;
    color: #222;
}

.page-news .hot-news ul li {
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px #ddd dashed;
}

.page-news .hot-news ul li .img {
    width: 100%;
    height: 248px;
    overflow: hidden;
    position: relative;
}

.page-news .hot-news ul li h3 {
    padding: 1rem 0;
    font-size: 1.2rem;
    color: #222;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.page-news .hot-news ul li p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.page-news .hot-news ul li .time span {
    width: 120px;
    height: 32px;
    border: 1px #bfbfbf solid;
    font-size: 0.8rem;
    color: #999;
}

.page-news .hot-news ul li .time span .icon {
    width: 0.8rem;
    height: 0.8rem;
    fill: currentColor;
    overflow: hidden;
    color: #999;
    margin-right: 6px;
}

.page-news .hot-news ul li .time i {
    font-size: 0.8rem;
    color: #999;
}

.page-news .hot-news ul li :hover h3 {
    color: #e60012;
}

.page-news .hot-news ul li :hover img {
    transform: scale(1.1);
}

.page-news .hot-news ul li :hover .time span {
    border: 1px #e60012 solid;
    background: #e60012;
    color: #fff;
}

.page-news .hot-news ul li :hover .time span .icon {
    color: #fff;
}

.pagination-box {
    text-align: center;
    line-height: 32px;
    color: #595959;
}

.pagination-box select {
    margin: 0 8px;
}

.pagination-box a,
.pagination-box span {
    background: #999;
    color: #fff;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    text-align: center;
    margin-right: 8px;
    cursor: pointer;
    vertical-align: top;
}

.pagination-box a:last-child,
.pagination-box span:last-child {
    margin-right: 0;
}

.pagination-box a.active,
.pagination-box span.active,
.pagination-box a.current,
.pagination-box span.current,
.pagination-box a:hover,
.pagination-box span:hover {
    background-color: #e60012;
    border-color: #e60012;
    color: #fff !important;
}

.pagination-box select {
    height: 32px;
    border: 1px solid #e2e2e2;
    box-sizing: border-box;
}

.pagination-box .prev_disabled,
.pagination-box .next_disabled {
    background-color: transparent !important;
    border-color: #e2e2e2 !important;
    color: #e2e2e2 !important;
    cursor: no-drop;
}

.pagination-box .prev_disabled:hover,
.pagination-box .next_disabled:hover {
    color: #e2e2e2 !important;
}

.pagination-box .page_num {
    border: none;
}

.pagination-box .prev,
.pagination-box .prev_disabled {
    width: 60px;
}

.pagination-box .next,
.pagination-box .next_disabled {
    width: 60px;
}

.pagination-box .prev::before,
.pagination-box .prev_disabled::before {
    content: '涓嬩竴椤�';
}

.pagination-box .next::before,
.pagination-box .next_disabled::before {
    content: '涓婁竴椤�';
}

.page-product .product-detail-section1,
.page-product .product-detail-section1 p {
    font-size: 16px;
    color: #666;
    line-height: 24px;
}

.page-product .product-detail-section1 img {
    max-width: 100%;
}

.s_iframe {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: none;
    margin: auto;
    overflow: hidden;
}

.s_iframe .contact-message {
    background: #fff;
    width: 400px;
    border: 1px #666 solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 30px 20px;
    opacity: 0;
}

.s_iframe .contact-message #if-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #333;
    cursor: pointer;
    border-radius: 0 0 0 40px;
    display: flex;
}

.s_iframe .contact-message #if-close .icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    overflow: hidden;
    color: #fff;
    margin-top: 8px;
    margin-left: 16px;
    transition: .6s;
}

.s_iframe .contact-message #if-close:hover .icon {
    transform: rotate(180deg);
}

.s_iframe .contact-message h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.s_iframe .contact-message form {
    display: block;
    width: 100%;
}

.s_iframe .contact-message form span {
    color: #e60012;
    font-size: 12px;
    margin-top: 6px;
}

.s_iframe .contact-message form div {
    margin-bottom: 10px;
}

.s_iframe .contact-message form input {
    width: 100%;
    display: block;
    height: 40px;
    border: 1px #eee solid;
    font-size: 14px;
    color: #999;
    line-height: 40px;
    padding: 0 10px;
    background: none;
    box-sizing: border-box;
}

.s_iframe .contact-message form textarea {
    width: 100%;
    display: block;
    height: 100px;
    border: 1px #eee solid;
    font-size: 14px;
    color: #999;
    line-height: 30px;
    padding: 10px;
    background: none;
    box-sizing: border-box;
    resize: none;
}

.s_iframe .contact-message form .btn-1 {
    display: block;
    height: 40px;
    width: 100%;
    border: none;
    background: #e60012;
    font-size: 16px;
    color: #fff;
}

.s_iframe .contact-message p {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.qqkefu {
    position: fixed;
    bottom: 200px;
    z-index: 9999;
    right: 0;
    width: 50px;
}

.qqkefu ul li {
    margin: 4px 0;
    background: rgba(153, 153, 153, 0.8);
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.qqkefu ul li:hover {
    background: #e60012;
}

.qqkefu ul li .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    overflow: hidden;
    color: #fff;
}

.qqkefu ul li a {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #e60012;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.qqkefu ul li .ewm {
    position: absolute;
    right: 110%;
    bottom: 0;
    width: 130px;
    height: 80px;
    background: rgba(153, 153, 153, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    opacity: 0;
    transition: .5s;
}

.qqkefu ul li .f_code {
    position: absolute;
    right: 110%;
    bottom: 0;
    width: 100px;
    height: 100px;
    opacity: 0;
    transition: .5s;
}

.qqkefu ul li:hover .f_code,
.qqkefu ul li:hover .ewm,
.qqkefu ul li:hover a {
    opacity: 1;
}

.qqkefu ul li .f_code img {
    width: 100%;
    height: 100%;
}

@media all and (max-width: 1620px) {
    .honor-button {
        display: none;
    }
    .program-4 .content .program-pagination {
        display: flex;
    }
    .about-4 .content .honor-pagination {
        display: flex;
    }
}

@media all and (max-width: 1580px) {
    .w1440 {
        width: 92%;
    }
}

@media all and (max-width: 1400px) {
    .w1440 {
        width: 96%;
    }
    .program-1 ul li .text {
        padding: 0 2rem 0 0;
    }
    .program-1 ul li:nth-child(even) .content>div .text {
        padding: 0 0 0 2rem;
    }
    .program-1 ul li .text img {
        width: 4rem;
    }
    .program-1 ul li .text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    footer .foot-nav ul li h3 a {
        font-size: 1rem;
    }
    footer .foot-nav ul li>a {
        font-size: 0.8rem;
    }
    footer .foot-nav ul li {
        margin-right: 60px;
    }
    footer .foot-nav .code div p {
        font-size: 0.8rem;
    }
    .home-Cooperation ul li {
        padding: 32px 0 32px;
    }
    .home-Cooperation ul li h3 {
        font-size: 1rem;
    }
    .home-Cooperation ul li p {
        font-size: .8rem;
    }
    .list-news ul li .img {
        width: 320px;
        height: 200px;
        position: relative;
        overflow: hidden;
    }
}

@media all and (max-width: 1200px) {
    .pd-70 {
        padding: 3.125rem 0;
    }
    .program-title .title h2 {
        font-size: 3.6rem;
        line-height: 3.6rem;
    }
    .program-title .title p {
        font-size: 2.4rem;
    }
    .program-p {
        font-size: 1.2rem;
    }
    .program-3 ul li .img {
        height: 14rem;
    }
    footer .foot-nav ul li {
        margin-right: 40px;
    }
    .home-Cooperation ul li {
        padding: 24px 0 24px;
    }
    .home-Cooperation ul li span {
        font-size: 2rem; color:#ff6600;
    }
    .font-30 {
        font-size: 20px;
    }
    .more a,
    .more button {
        min-width: 170px;
        height: 40px;
    }
    .list-news ul li .img {
        width: 280px;
        height: 160px;
        position: relative;
        overflow: hidden;
    }
}

@media all and (max-width: 992px) {
    .pd-70 {
        padding: 2.5rem 0;
    }
    .about-1 ul li h4 i {
        font-size: 3rem;
    }
    .program-title .title h2 {
        font-size: 3rem;
        line-height: 3rem;
    }
    .program-title .title p {
        font-size: 1.8rem;
    }
    .program-1 ul li {
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    .program-1 ul li .content {
        position: relative;
    }
    .program-1 ul li:nth-child(even) .content>div .text {
        padding: 2rem 2rem 0;
    }
    .program-1 ul li .text {
        width: 100%;
        padding: 2rem 2rem 0;
    }
    .program-1 ul li .img {
        width: 100%;
    }
    .program-3 ul li {
        width: 100%;
        padding: 0 0 2rem 70px;
    }
    .program-3 ul li {
        border: none !important;
    }
    .program-3 ul li i {
        top: 0 !important;
        left: -2.25rem !important;
    }
    .program-3 ul li:nth-child(even) {
        flex-direction: column;
    }
    .program-3 ul li::before {
        content: none;
    }
    .program-3 ul li .img {
        height: auto;
        width: 100%;
    }
    .program-3 ul li .img img {
        width: 100%;
    }
    .program-3 ul li .desc h3 {
        margin-bottom: 0.5rem;
    }
    .program-3 ul li .desc p {
        margin-bottom: 1rem;
    }
    footer .foot-nav .code {
        justify-content: flex-start;
    }
    .home-service .content .line {
        padding: 2rem;
    }
}

@media all and (max-width: 768px) {
    .pd-70 {
        padding: 2rem 0;
    }
    .about-1 {
        padding: 1.6rem;
    }
    .program-title .title h2 {
        font-size: 2rem;
        line-height: 2rem;
    }
    .program-title .title p {
        font-size: 1rem;
    }
}