﻿img{width:100%;display:block}
.banner {
    position: relative
}
.products-c {
    position: absolute;
    left: 10%;
    top: 50%;
    text-align: left;
    color: #ffc675;
    width: 43rem;
    transform: translateY(-50%);
}
.main-t{width:25rem}
.subhead{font-size:3rem;margin-bottom:2rem}
.data-source {
    font-size: 1rem;
    margin-top: 6rem;
    transform: scale(.8);
    transform-origin: left;
}
.know-More{display:flex;align-items:center;color:#ffc675;width: max-content;}
.know-More:hover .arrow-line{width:40px}
.arrow-line {
    height: 1px;
    width:25px;
    background: #ffc675;
    margin-left: 10px;
    transition: width 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out;
}
.arrow-right {
    width: 5px;
    height: 5px;
    border-top: 5px solid transparent;
    border-left: 5px solid;
    border-bottom: 5px solid transparent;
}
.addBtn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.5rem;
    margin-left: -.75rem;
    margin-top: -1px;
    border-top: 2px solid;
}

.addBtn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1.5rem;
    margin-left: -1px;
    margin-top: -.75rem;
    border-left: 2px solid;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.active.addBtn::after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.addBtn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    color:#d8d8d8
}
.product-item {
    border-bottom: 1px solid #d8d8d8;
    padding: 5rem 5rem 5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:relative
}
.product-name{font-size:1.75rem;font-weight:bold}
.product-desc{font-size:1rem}
.product-show {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(/Images/Products/index/banner.jpg)no-repeat center;
    background-size:cover;
}
.product-item:hover{background:#be9562;color:#fff}
.product-item .know-More{color:#d8d8d8}
.product-item:hover .know-More{color:#fff}
.product-item:hover .arrow-line{width:40px;background:#fff}
.product-item .arrow-line {
    height: 1px;
    width: 25px;
    background: #d8d8d8;
}
.product-info{display:flex;align-items:center;flex:1}
.product-info>img{max-width:10rem;margin-right:2rem}