.of-list{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 20px auto;
}

.of-list .of-list-li {
    border: 1px solid #eeeeee;
    -webkit-transition: all .35s;
    transition: all .35s;
}

.of-list .of-list-li:hover {
    box-shadow: 0 10px 30px 0 rgba(70, 100, 180, .10);
}

.of-list .of-list-li a {
    display: block;
    overflow: hidden;
}

.of-list .of-list-li span{
    font-size: 16px;
    width: 100%;
    font-family: "Adobe 黑体 Std R";
    color: #3F3F3F;
    display: inline-block;
    margin: 10px 0;
    text-align: center;
}

.of-list .of-list-li img{
    min-width: 272px;
    height: 260px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.m--clearfix:before, .m--clearfix:after {
    content: " ";
    display: table;
}

.m--clearfix:after {
    clear: both;
}


/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 0 0 200px;
}

.project-one .container {
    max-width: 1060px;
}

.project-one__carousel {
    position: relative;
    display: block;
}

.project-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.project-one__carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: -23px;
    right: 0px;
    left: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #1b1825;
    opacity: .4;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.project-one__carousel.owl-carousel .owl-dot.active {
    background: #42d9be;
    opacity: 1;
    height: 13px;
    width: 13px;
}

.project-one__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    height: 210px;
    object-fit: cover;
    object-position: center;
}

.project-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(27, 24, 37, .30);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: top center;
    border-radius: 8px;
    z-index: 1;
}

.project-one__single:hover .project-one__img:before {
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.project-one__img img {
    width: 100%;
    border-radius: 8px;
    transform: scale(1);
    transition: transform 500ms ease;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05);
}

.project-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    border-radius: 8px;
    padding: 19px 8px 19px;
    margin-top: -35px;
    margin-left: 30px;
    margin-right: 30px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 2;
}

.project-one__content:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #0084ee;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .07);
    transition: all 500ms ease;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    border-radius: 8px;
    z-index: -1;
}

.project-one__single:hover .project-one__content:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.project-one__tagline {
    font-size: 14px;
    margin: 0;
    line-height: 27px;
    transition: all 500ms ease;
}

.project-one__title {
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    transition: all 500ms ease;
    text-align: center;
}

.project-one__title a {
    color: #1b1825;
    transition: all 500ms ease;
}

.project-one__arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.project-one__arrow a {
    color: #1b1825;
    font-size: 20px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.project-one__single:hover .project-one__tagline,
.project-one__single:hover .project-one__title a {
    color: #ffffff;
}

.project-one__single:hover .project-one__arrow a {
    color: #42d9be;
}

.list-case-layui-tab .layui-tab-title li {
    font-size: 16px;
}


