* {
    word-wrap: break-word;
    box-sizing: border-box;
}

body,table,input,select,textarea {
    font-family: open sans,arial,helvetica,raleway
}

html {
    overflow-y: scroll
}

body {
    margin: 0;
    padding: 0 0 0;
    color: #333;
    font-family: Helvetica,Arial,Tahoma,sans-serif;
    font-size: 14px;
    letter-spacing: .2px;
    background-color: #f6f8fc;
}

table {
    font-size: 13px
}

form,p,h1,h2 {
    margin: 0;
    padding: 0
}

ul,li {
    list-style: none;
    margin: 0;
    padding: 0
}

select {
    padding: 2px;
    font-size: 13px
}

textarea {
    font-size: 13px;
    border-color: #b0b0b0 #ccc #ccc #b0b0b0
}

a:hover {
    text-decoration: underline;
    color: #de3e46
}

img {
    border: none
}
.clearfix::after{
    content:'';
    display:block;
    clear:both;
}
.clear {
    clear: both;
    overflow: hidden;
    height: 1px
}
input {
    outline: none;
}
input::-webkit-input-placeholder {
    color: #ccc
}

input::-moz-input-placeholder {
    color: #ccc
}

input::-ms-input-placeholder {
    color: #ccc
}
/* ------ */
.index-wrapper {
    margin: 0 auto;
    width: 1300px;
    padding-top: 20px
}
.index-introduceAstock {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.index-introduce {
    background: #fff;
    display: flex;
    padding: 25px;
    width: 938px;
}
.introduce-pic {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 270px;
}
.introduce-pic img {
    height: 258px;
    width: 258px;
}

.introduce-cot {
    flex: 1;
}
.introduce-cot .cot-title {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 10px;
    position: relative;
}
.introduce-cot .cot-title h1 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin: 0px;
}
.introduce-cot .cot-title p {
    color: #999;
    font-size: 12px;
    margin: 0;
    margin-top: 10px;
}
.introduce-cot .cot-info {
    margin-top: 20px;
}
.introduce-cot .cot-info .info-text {
    display: flex;
    margin-bottom: 20px;
}
.introduce-cot .info-text p:first-child {
    color: #999;
    margin-right: 20px;
    text-align: right;
    min-width: 120px;
}
.introduce-cot .info-text p:last-child{
    flex: 1;
}
.introduce-cot .info-text a {
    color: #de3e46;
    text-decoration: underline;
}
.introduce-cot .quantity {
    display: flex;
}
.introduce-cot .quantity input{
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    height: 36px;
    padding: 6px 10px;
    width: 100%;
    box-sizing: border-box;
}
.introduce-cot .quantity .btn {
    height: 36px;
    width: 70px;
    margin-left:10px;
    background-color: #de3e46;
    color: #fff;
    border-radius: 4px;
    font-family: unset;
    font-size: 14px;
    transition: all .2s;
    border: 0;
    cursor: pointer;
}
/* index-stock */
.index-stock {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 346px;
}
.index-stock .stock-title {
    display: flex;
    align-items: center;
}
.index-stock .stock-title h2{
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
}
.index-stock .stock-title span{
    color: #c80000;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 700;
}

.index-stock .stock-cot .rfq>p {
    font-size: 12px;
}
.index-stock .stock-cot label {
    color: #333;
    font-size: 14px;
    padding: 5px 0;
    pointer-events: none;
    display: flex;
    align-content: center;
    position: relative;
    padding-left: 8px;
}
.index-stock .stock-cot label i{
    background-color: #c80000;
    border-radius: 50%;
    display: inline-block;
    height: 4px;
    width: 4px;
    position: absolute;
    top:45%;
    left:0px;
}
.index-stock .stock-cot .input {
    position: relative;
}
.index-stock .stock-cot input{
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    height: 36px;
    padding: 6px 10px;
    width: 100%;
}
.index-stock .verify input{
    border: 1px solid #c80000;
}
.index-stock .verify label{
    color: #c80000;
}
.index-stock .stock-cot .option {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 11px -6px #333;
    cursor: pointer;
    max-height: 0;
    overflow-y: auto;
    position: absolute;
    top: 66px;
    width: 100%;
    z-index: 100;
    max-height: 400px;
    display: none;
}
.index-stock .stock-cot .option p{
    align-items: center;
    display: flex;
    height: 40px;
    padding: 10px;
    width: 100%;
}
.index-stock .stock-cot .option p:hover {
    color: #de3e46;
    font-weight: bolder;
}
.index-stock .stock-cot .option::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.index-stock .stock-cot .option::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 8px;
}
.index-stock .btnBox {
    margin-top: 20px;
}
.index-stock .btnBox button {
    background-color: #de3e46;
    color: #fff;
    border-radius: 4px;
    font-family: unset;
    font-size: 14px;
    padding: 10px 20px;
    position: relative;
    transition: all .2s;
    border: 0;
    cursor: pointer;
}
/* index-productMain */
.index-productMain {
    background-color: #fff;
    margin-bottom: 16px;
    padding: 20px;
    width: 100%;
}
.index-productMain .bar{
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 5px;
}
.index-productMain ul{
    display: flex;
}
.index-productMain ul li{
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    margin-right: 60px;
    padding: 8px 10px;
    transition: all .2s;
}
.index-productMain ul li.active {
    position: relative;
}
.index-productMain ul li.active::after{
    background-color: #de3e46;
    border-radius: 2px;
    bottom: -7px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 40px;
}
.index-productMain .content {
    padding-top: 20px;
}
.index-productMain .content h2{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}
.index-productMain .content p{
    line-height: 20px;
    margin-bottom: 20px;
}