.goertek-web-id {
    position: relative;
    padding: 60px 40px;
}
.goertek-web-id * {
    /*font-family: "PingFang SC","Microsoft Yahei";*/
}
.goertek-web-id-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s;
}
.goertek-web-id-fade.fade-display {
    opacity: 1;
    transform: translateY(0);
}
.device-pc .goertek-web-id-header {
    width: 100%;
    height: 24px;
}
.device-pc .goertek-web-id-title {
    width: 100%;
    text-align: center;
    color: #4d4d4d;
    transition: all 0.3s;
    cursor: default;
}
.device-pc .goertek-web-id-title p {
    margin-top: 0;
    font-size: 24px;
}
.device-pc .goertek-web-id-desc {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    color: #4d4d4d;
    transition: all 0.6s;
    cursor: default;
    display: flex;
    justify-content: center;
}
.device-pc .goertek-web-id-desc p {
    font-size: 16px;
	line-height:2;
    text-align: left;
}
.device-pc .goertek-web-id-product-list {
    width: 100%;
    margin-top: 70px;
    display: grid;
}
@media (min-width: 800px) {
    .device-pc .goertek-web-id {
        position: relative;
        padding: 60px 40px;
    }
    .device-pc .goertek-web-id-desc p {
        width: 66%;
    }
    .device-pc .goertek-web-id-product-list {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .device-pc .goertek-web-id-product-mask {
        display: flex;
        flex-direction: column;
    }
    .device-pc .goertek-web-id-product-info {
        display: none;
    }
}
@media (max-width: 800px) {
    .device-pc .goertek-web-id {
        position: relative;
        padding: 30px 20px;
    }
    .device-pc .goertek-web-id-desc p {
        width: 100%
    }
    .device-pc .goertek-web-id-product-list {
        gap: 10rem;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .device-pc .goertek-web-id-product-mask {
        display: none;
    }
    .device-pc .goertek-web-id-product-info {
        display: block;
    }
}
.device-pc .goertek-web-id-product {
    position: relative;
    /*width: calc(50% - 10px);*/
    cursor: pointer;
}
.device-pc .goertek-web-id-product img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.device-pc .goertek-web-id-product:hover .goertek-web-id-product-mask {
    opacity: 1;
}
.device-pc .goertek-web-id-product-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #00000050;
    opacity: 0;
    transition: opacity 0.5s;
}
.device-pc .goertek-web-id-product-mask .mask-content {
    width: 100%;
    height: calc(100% - 45px);
    color: white;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.device-pc .goertek-web-id-product-mask .mask-content .content-title {
    font-size: 24px;
    margin: 10px 0;
}
.device-pc .goertek-web-id-product-mask .mask-content .content-desc p {
    font-size: 15px;
    margin: 0;
    font-weight: lighter;
}
.device-pc .goertek-web-id-product-mask .mask-footer {
    width: 100%;
    height: 45px;
    color: white;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.device-pc .goertek-web-id-product-mask .mask-footer span {
    font-size: 16px;
}
.device-pc .goertek-web-id-product-info {
    margin-top: 2rem;
}
.device-pc .goertek-web-id-product-info span {
    font-size: 5.5rem;
}

/*移动*/
.device-mobile .goertek-web-id {
    position: relative;
    padding: 1rem;
}
.device-mobile .goertek-web-id-header {
    width: 100%;
    height: 1rem;
}
.device-mobile .goertek-web-id-title {
    width: 100%;
    text-align: center;
    color: #4d4d4d;
    transition: all 0.3s;
    cursor: default;
}
.device-mobile .goertek-web-id-title p {
    margin-top: 0;
    font-size: 1rem;
}
.device-mobile .goertek-web-id-desc {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    color: #808080;
    transition: all 0.6s;
    cursor: default;
    display: flex;
    justify-content: center;
}
.device-mobile .goertek-web-id-desc p {
    font-size: 16px;
	color:#333333;
	line-height:2;
    width: 100%
}
.device-mobile .goertek-web-id-product-list {
    width: 100%;
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.device-mobile .goertek-web-id-product-mask {
    display: none;
}
.device-mobile .goertek-web-id-product-info {
    display: block;
}
.device-mobile .goertek-web-id-product {
    position: relative;
    cursor: pointer;
}
.device-mobile .goertek-web-id-product img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.device-mobile .goertek-web-id-product:hover .goertek-web-id-product-mask {
    opacity: 1;
}
.device-mobile .goertek-web-id-product-mask .mask-content {
    width: 100%;
    height: calc(100% - 45px);
    color: white;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.device-mobile .goertek-web-id-product-mask .mask-content .content-title {
    font-size: 24px;
    margin: 10px 0;
}
.device-mobile .goertek-web-id-product-mask .mask-content .content-desc p {
    font-size: 15px;
    margin: 0;
    font-weight: lighter;
}
.device-mobile .goertek-web-id-product-mask .mask-footer {
    width: 100%;
    height: 45px;
    color: white;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.device-mobile .goertek-web-id-product-mask .mask-footer span {
    font-size: 16px;
}
.device-mobile .goertek-web-id-product-info {
    margin-top: 1rem;
}
.device-mobile .goertek-web-id-product-info span {
    font-size: 1rem;
}
