.carousel {
    width: 100%;
    height: 10rem;
}

.carousel-warp {
    position: relative;
    display: flex;
    flex-direction: row;
}

.carousel-mouse {
    position: absolute;
    bottom: 3.425rem;
    left: 50%;
    margin-left: -0.1375rem;
    width: 0.275rem;
    height: 0.375rem;
    z-index: 30;
    animation-name: mouseJump;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes mouseJump {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-0.125rem);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(0.125rem);
    }
    100% {
        transform: translateY(0);
    }
}

.carousel-mouse-icon {
    width: 100%;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 10rem;
}

.custom-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.25rem;
    background: url("../image/shadow.png");
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 30;
}

.custom-pagination .custom-pagination-warp {
    padding-bottom: 0.25rem;
    display: flex;
    justify-content: center;
}

.my-bullet {
    display: inline-block;
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.25rem;
    background-image: url('../image/dot.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;
    cursor: pointer;
}

.my-bullet:last-child {
    margin-right: 0;
}

.my-bullet-active {
    background-image: url('../image/dot_current.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-slide-bg {
    width: 100%;
    height: 10rem;
    object-fit: fill;
}

.scale-draw .swiper-slide-bg {
    animation-name: scaleDraw; /*关键帧名称*/
    animation-timing-function: ease-in-out; /*动画的速度曲线*/
    animation-iteration-count: infinite; /*动画播放的次数*/
    animation-duration: 6.3s; /*动画所花费的时间*/
}

@keyframes scaleDraw {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.swiper-slide {
    position: relative;
}

.slide-warp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    z-index: 20;
    display: flex;
    justify-content: center;

}

.slide-warp-center .word-picture {
    width: 7.275rem;
    height: 5.2625rem;
    margin-top: 2.0875rem;
    cursor: pointer;
    opacity: 0;
    -webkit-transform: translateY(0.375rem);
    -ms-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.technical-innovation .word-picture {
    width: 7.275rem;
    height: 5.2625rem;
    margin-top: 2.0875rem;
}

.smart-innovation .word-picture {
    width: 11.45rem;
    height: 2.8125rem;
    margin-top: 2.375rem;
}

.cooperation .word-picture {
    width: 12.3125rem;
    height: 4.05rem;
    margin-top: 2.875rem;
}

.swiper-slide-active .slide-warp-center .word-picture {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.slide-warp .title-top {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    height: 1.4rem;
    line-height: 1.4rem;
    opacity: 0;
    -webkit-transform: translateY(0.375rem);
    -ms-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.swiper-slide-active .slide-warp .title-top {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.slide-warp .title-center {
    font-size: 0.75rem;
    font-weight: 400;
    color: #FFFFFF;
    height: 0.7125rem;
    line-height: 0.7125rem;
    padding: 0.9rem 0 0.875rem;
    opacity: 0;
    -webkit-transform: translateY(0.375rem);
    -ms-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
    -webkit-transition: all .5s;
    transition: all .5s;

}

.swiper-slide-active .slide-warp .title-center {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.slide-warp .contact {
    width: 2.75rem;
    height: 0.75rem;
    background: #FF8400;
    border-radius: 0.375rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    -webkit-transform: translateY(0.375rem);
    -ms-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.swiper-slide-active .slide-warp .contact {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}

.slide-warp .contact .text {
    height: 0.375rem;
    line-height: 0.375rem;
    font-size: 0.3rem;
    font-weight: 400;
    color: #FFFFFF;
    padding-right: 0.35rem;
    text-align: right;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-warp .contact .triangle {
    width: 0;
    height: 0;
    border-top: 0.0625rem solid transparent;
    border-bottom: 0.0625rem solid transparent;
    border-left: 0.1125rem solid #FFFFFF;
    margin-right: 0.375rem;
    margin-left: 0.3125rem;
}

.warp-header {
    font-size: 0.5rem;
    font-weight: 600;
    color: #333333;
    line-height: 1;
    text-align: center;
    position: relative;
}

.warp-header:after {
    content: '';
    width: 0.75rem;
    height: 0.075rem;
    background: #FE4B63;
    border-radius: 0.0375rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.product-warp .warp-header {
    padding: 1.075rem 0 0.825rem;
}

.product-warp .warp-header:after {
    bottom: 0.5rem;
}

.product-warp .warp-content {
    width: 100%;
    height: 8.75rem;
    display: flex;
    justify-content: space-between;
}

.product-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-warp .card {
    width: 100%;
    height: 8.75rem;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    cursor: pointer;
}

.product-warp .card .card-title {
    font-size: 0.375rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
    text-align: center;
    z-index: 2;
    position: absolute;
    top: 1.2rem;
    left: 0;
    right: 0;
}

.product-warp .card .card-subtitle {
    font-size: 0.225rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
    opacity: 0.5;
    text-align: center;
    z-index: 2;
    position: absolute;
    top: 1.8125rem;
    left: 0;
    right: 0;
}

.product-warp .card .card-bottom {
    z-index: 1;
    height: 8.75rem;
    position: absolute;
    top: 8.75rem;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-warp .card .card-detail {
    flex: 1;
    font-size: 0.225rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.375rem;
    padding: 2.625rem 0.5rem 0;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.product-warp .card .card-btn {
    width: 2.5rem;
    height: 0.75rem;
    background: linear-gradient(-90deg, #FE4B63, #18A3F8);
    border-radius: 0.375rem;
    text-align: center;
    font-size: 0.3rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.75rem;
    margin-bottom: 0.875rem;
}

.product-warp .warp-content .card-current .card-bottom {
    box-sizing: border-box;
    top: 0;
    transition: all .5s;
}

.product-warp .warp-content .card-leave .card-bottom {
    top: 8.75rem;
    transition: all .5s;
}

.introduce {
    padding-top: 1rem;
}

.introduce-warp {
    width: 15rem;
    height: 8.05rem;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.introduce-warp .introduce-image {
    width: 6.05rem;
    height: 100%;
}

.introduce-warp .introduce-card {
    width: 9.8375rem;
    height: 6.8rem;
    padding-left: 0.75rem;
    padding-right: 0.625rem;
    background: #FFFFFF;
    box-shadow: 0 0 0.25rem 0 rgba(77, 77, 77, 0.1);
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
}

.introduce-warp .title-translate {
    font-size: 0.5rem;
    font-weight: 600;
    color: #333333;
    line-height: 1;
    padding: 1rem 0 0.3rem;
    position: relative;
}

.introduce-warp .title-translate:after {
    content: '';
    width: 0.4rem;
    height: 0.0625rem;
    background: #FE4B63;
    border-radius: 0.0375rem;
    position: absolute;
    left: 0;
    bottom: 0;
}

.introduce-warp .title {
    font-size: 0.3rem;
    font-weight: 600;
    color: #333333;
    line-height: 1;
    padding: 0.25rem 0 0.3rem;
}

.introduce-warp .describe {
    display: block;
    width: 100%;
    font-size: 0.225rem;
    font-weight: 400;
    color: #666666;
    line-height: 0.35rem;
    flex: 1;
    overflow: hidden;
}

.introduce-warp .more {
    font-size: 0.3rem;
    font-weight: 600;
    color: #BBBBBB;
    padding: 0.1rem 0;
    margin-bottom: 0.75rem;
}

.news .warp-header {
    padding: 0.75rem 0 0.95rem;
}

.news .warp-header:after {
    bottom: 0.625rem;
}

.news .warp-content {
    width: 15rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto 1rem;
}

.news .warp-left {
    width: 6.875rem;
}

.news .warp-left .cover-picture {
    width: 6.875rem;
    height: 4rem;
    margin-bottom: 0.25rem;
}

.news .news-title {
    font-size: 0.3rem;
    font-weight: 600;
    color: #333333;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news .news-date {
    font-size: 0.225rem;
    font-weight: 400;
    color: #999999;
    line-height: 1;
    padding-top: 0.25rem;
}

.news .warp-right {
    width: 7.725rem;
}

.news-tab {
    display: flex;
    flex-direction: row;
    margin-bottom: 0.1875rem;
}

.news-tab .tab-item {
    width: 1.825rem;
    height: 0.5rem;
    background: #F5F5F5;
    border-radius: 0.25rem;
    text-align: center;
    line-height: 0.5rem;
    font-size: 0.25rem;
    font-weight: 400;
    color: #999999;
    margin-right: 0.25rem;
    cursor: pointer;
}

.news-tab .current-tab {
    background: #FFEDEF;
    font-weight: 600;
    color: #FE4B63;
}

.news-list {
    border-top: 1px solid #E8E9EC;
    height: 4.4rem;
    overflow-y: auto;
}

.news-list .news-item {
    padding: 0.375rem 0;
    border-bottom: 1px solid #E8E9EC;
}

.news-list .news-title, .news-list .news-date {
    position: relative;
    padding-left: 0.25rem;
}

.news .news-list .news-title:before {
    content: '';
    width: 0.1rem;
    height: 0.1rem;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.course {
    height: 7.925rem;
    background: url("../image/ecology.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.course .warp-header {
    padding: 1rem 0 0.3rem;
    color: #FFFFFF;
}

.course .warp-header:after {
    bottom: 0;
}

.course .warp-content {
    flex: 1;
    width: 15rem;
    margin-top: 1.55rem;
    display: flex;
    flex-direction: row;
    justify-self: flex-start;
}

.course-tag {
    flex: 1;
    height: 2.025rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 0.375rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    font-size: 0.3rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}

.course-tag:last-child {
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.course-tag .tag-title {
    opacity: 0.8;
}

.course-tag .tag-detail {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding-top: 0.3125rem;
}

.course-tag .tag-num {
    height: 0.825rem;
    font-size: 1rem;
    font-family: Fan Wun Ming TW;
    font-weight: 800;
}

.course-tag .tag-unit {
    padding-left: 0.125rem;
}

.course-tag .tag-describe {
    padding-top: 0.225rem;
}

.course .warp-footer {
    font-size: 0.2rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
    opacity: 0.5;
    padding-bottom: 1rem;
}

.partner-warp {
    width: 15.25rem;
    margin: 0 auto 1.5rem;
}

.partner-warp .warp-header {
    padding: 0.75rem 0 0.95rem;
}

.partner-warp .warp-header:after {
    bottom: 0.625rem;
}

.partner-warp .warp-content {
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/
    margin: 0 -0.1625rem -0.3125rem;
    overflow: hidden;
}

.partner-item {
    width: 3.5625rem;
    height: 2rem;
    margin: 0 0.1625rem 0.3125rem;
    cursor: pointer;
    border: 1px solid #EEEEEE;
    border-radius: 0.125rem;
    overflow: hidden;
}

.partner-item img {
    width: 100%;
    height: 100%;
}

.partner-warp .warp-bottom {
    font-size: 0.225rem;
    font-weight: 400;
    color: #999999;
    line-height: 1;
    padding: 0.5625rem 0;
    text-align: center;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    width: 13.75rem;
    height: 80vh;
    background: #FFFFFF;
    border-radius: 0.125rem;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 0.125rem 0.125rem 0;
    display: flex;
    flex-direction: row-reverse;
}

.modal-header .close-img {
    width: 0.375rem;
    height: 0.375rem;
    padding: 0.375rem;
    cursor: pointer;
}

.modal-detail {
    flex: 1;
    margin: 0 0.625rem;
    display: flex;
    flex-direction: column;
    padding-bottom: 0.125rem;
    overflow: hidden;
}

.modal-detail .dynamic-title {
    font-size: 0.375rem;
    font-weight: 600;
    color: #000000;
    line-height: 1;
}

.modal-detail .dynamic-tag {
    height: 0.925rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.25rem;
    font-weight: 400;
    color: #999999;
    border-bottom: 1px solid #E8E9EC;
}

.modal-detail .dynamic-tag .tag-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 0.5rem;
}

.modal-detail .dynamic-tag .tag-item span {
    padding-left: 0.1rem;
}

.see-img {
    width: 0.325rem;
}

.record-img {
    width: 0.25rem;
}

.dynamic-detail {
    flex: 1;
    overflow: auto;
    padding-top: 0.125rem;
    font-size: 0.25rem;
}
