


/*WGL*/

.wgl-container {
    margin: -4em 0 0 0;
    padding: 1vw 0 1vw 0;
}

.trade-content {
    padding: 1vw 0 1vw 0;
}


/*总标题-制造范围*/

.trade-title {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin: 10px 0 10px 0;
    position: relative;
   /* text-shadow: 0.1em 0.1em 0.3em #000;*/
}

.trade-title:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid;
    border-color: #20B09F transparent transparent;
}

.trade-title:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 3px;
    background-color: #20B09F;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}


/*PICS*/

.grid {
    /*outline:1px dotted red;*/
    display: grid;
    grid-template-columns: repeat(1, 100%);
    /*min-width: 1000px;*/
    padding: 0 0 1vw 0;
}

.grid__item {
    /*outline: 1px dotted blue;/*蓝色虚线*/
    position: relative;
    padding: 12px;
    display: block;
    align-items: stretch;
    width: 100%;
}


/*    background-color: var(--item-bg);
  height: 100%;
  }
  */

.grid__item-img {
    display: block;
    padding-bottom: 25%;
    height: 0;
    width: 100%;
    border-radius: 10px;
}

.grid__item-img canvas {
    width: 100%;
}

.grid__item-img img {
    height: 100%;
    display: block;
}

.js .grid__item-img img {
    display: none;
}

.theme {
    --item-meta: #fff;
    --item-title: #000;
    --item-subtitle: #fff;
    --item-text: #fff;
}


/*副标题*/

.main-title-area {
    display: block;
    margin: 0.3em 0;
    width: 100%;
    padding: 0.5em 0em;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1;
    color: #333;
}

.grid__item-content {
    /*outline: 1px solid yellow;*/
    width: 100%;
    margin: 6% 0 0 15%;
    /*改变文字位置*/
    text-shadow: 0.1em 0.1em 0.3em #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: none;
    background: none;
}

.grid__item--bg .grid__item-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}


/*图片内文字*/

.grid__item-subtitle {
    text-align: left;
    font-weight: 100;
    line-height: 1;
    text-shadow: 0.1rem 0.1rem 0.2rem #000;
    /*下部详情链接阴影*/
    display: block;
    /*color: #fff;/*无效*/
}

.grid__item-subtitle span {
    display: block;
    font-size: /*1rem*/ 80%;
    color: #fff;
    /*上部解释文字颜色*/
    line-height: 2em;
    text-shadow: 0.1em 0.0em 0.3em #000;
    /*描述文字阴影*/
}


/*图片内链接*/

.grid__item-link {
    display: inline-block;
    color: currentColor;
    font-weight: 100;
    font-size: 20px;
    position: relative;
    margin: 1.2rem 0 0 0;
    pointer-events: auto;
    color: #fff !important;
    /*下部详情链接文字颜色*/
    transition: all 0.5s ease !important;
}


/*链接悬停效果*/

.grid__item-link:focus,
.grid__item-link:hover {
    /*outline: 1px solid green;*/
    text-decoration: none !important;
    color: red !important;
    transition: all 0.5s ease !important;
}

.grid__item-subtitle * {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.7, 1);
    transition-property: transform, opacity;
}

.grid__item:hover .grid__item-subtitle * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.grid__item:hover .grid__item-subtitle span {
    transition-delay: 0.1s;
}

.grid__item:hover .grid__item-subtitle .grid__item-link {
    transition-delay: 0.2s;
}

