/*banner图文字特定颜色*/
.two-banner .word-fix h1 {
    *color: #5b0074 !important;
}
.two-banner .word-fix p {
    *color: #5b0074 !important;
}
/*banner图文字特定颜色*/
/*色彩配方查询*/
.color {}
.color-item {}
.color-item ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3%;
}
.color-item ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 31.33%;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 2%;
    background: #fff;
    overflow: hidden;
}

.color-item ul li .photo {
    position: relative;
}
.color-item ul li .photo img {
    width: 100%;
}
.color-item ul li .photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
    opacity: 0.3;
}
.color-item ul li .photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background: #333;
    display: inline-block;
    vertical-align: middle;
    z-index: 2;
    opacity: 0;
    transition: all 0.6s ease;
}
.color-item ul li:hover .photo::after {
    opacity: 0.8;
}

.color-item ul li .word {
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: 10;
    padding:20% 15%;
    transition: all 0.5s;
}

.color-item ul li .word .tit {
}

.color-item ul li .word .tit h4 {
    font-size: 26px;
    color: #fff;
    font-weight: bold;
}
.color-item ul li .word .tit h5 {
    font-size: 16px;
    color:#fff;
    margin:20px 0 0 0;
}

.color-item ul li .word .go-color  {
    margin:40px 0 0 0;
}
.color-item ul li .word .go-color a {
    position: relative;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    font-stretch: normal;
    letter-spacing: 0;
    color: #fff;
}
.color-item ul li .word .go-color a::after {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../image/go.svg) no-repeat center center/24px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.6s ease;
}
.color-item ul li .word .go-color a:hover::after {
    transform: translate(10px,0px);
}
.indcolor{background: #f7f7f7;padding: 4% 0;}
@media screen and (max-width:1024px) {
.color {
    padding:5% 0;
}
.color-item {}
.color-item ul {}
.color-item ul li {
    width: 100%;
    margin:1%;
}

.color-item ul li .photo {
    position: relative;
}
.color-item ul li .photo img {
    width: 100%;
}
.color-item ul li .word {

}

.color-item ul li .word .tit {
}

.color-item ul li .word .tit h4 {
    font-size: 20px;
}
.color-item ul li .word .tit h5 {
    font-size: 16px;
    margin:20px 0;
}

}
/*色彩配方查询*/