body {
    user-select: none;
    background-color: var(--color-white);
    overflow-x: hidden;
}

.others-container {
    padding: 195px 0 96px;
    min-height: 100%;
}
.others-title {
    margin-bottom: 10px;
}
.others-title i,
.others-title span {
    display: block;
    line-height: 1.2;
    color: var(--color-dark);
}
.others-title i {
    font-size: 34px;
}
.others-title span {
    font-size: 26px;
}
.others-tabs {
    display: flex;
}
.others-tabs a {
    display: flex;
    margin-left: 10px;
    color: var(--color-dark);
    font-size: 26px;
}
.others-tabs a:first-child {
    margin-left: 0;
}
.others-tabs a span {
    border-bottom: 2px solid var(--color-dark);
    transition: all .1s linear;
}
.others-tabs a:hover,
.others-tabs a.active {
    color: var(--theme-color);
}
.others-tabs a:hover span,
.others-tabs a.active span {
    border-color: var(--theme-color);
}
.others-content {
    margin-top: 40px;
}
.others-item {
    float: left;
}
.others-item {
    display: block;
    float: left;
    width: calc((100% - 40px) / 2);
}
.others-item:first-child {
    margin-right: 40px;
}
.others-item .image {
    position: relative;
    padding-bottom: 50%;
    width: 100%;
    overflow: hidden;
}
.others-item .image i {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .2s linear;
}
.others-item .image i.bg,
.others-item .image i.gif {
    background: no-repeat center center / cover;
}
.others-item .image i.gif {
    display: none;
}
.others-item .image i.logo {
    background: rgba(0, 0, 0, .3) no-repeat center center / 40%;
}
.others-item .name {
    margin-top: 15px;
}
.others-item .name h4,
.others-item .name p {
    color: var(--color-dark);
}
.others-item .name h4 {
    font-size: 18px;
    font-weight: normal;
}
.others-item .name p {
    font-size: 16px;
}