123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .product-details-section .container .section-title .close{
- cursor: pointer;
- width: 36px;
- height: 36px;
- line-height: 30px;
- box-shadow: 0px 2px 17px 4px rgba(158, 158, 158, 0.15);
- background: #FFFFFF;
- border: 1px solid #F2F2F2;
- border-radius: 4px;
- }
- .product-details-section .tab-pane{
- padding: 30px;
- box-shadow: 0px 2px 17px 4px rgba(158, 158, 158, 0.15);
- }
- .product-details-section .tab-pane .productContent{
- display: flex;
- }
- .product-details-section .tab-pane .productContent>div:nth-child(1){
- width: 40%;
- text-align: center;
- }
- .product-details-section .tab-pane .productContent>div:nth-child(2){
- width: 60%;
- }
- .product-details-section .tab-pane .close{
- cursor: pointer;
- }
- .product-details-section .tab-pane .productText{
- font-size: 20px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- text-align: center;
- margin-bottom: 20px;
- }
- .product-details-section .tab-pane .productContent .paneConText .title{
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- margin-bottom: 15px;
- }
- .product-details-section .tab-pane .productContent .paneConText .content{
- font-size: 13px;
- font-family: Microsoft YaHei;
- color: #333333;
- margin-bottom: 15px;
- line-height: 28px;
- }
- @media (max-width: 991px){
- .product-details-section .tab-pane .productContent{
- display: inline;
- }
- .product-details-section .tab-pane .productContent>div:nth-child(1){
- width: 100%;
- text-align: center;
- }
-
- .product-details-section .tab-pane .productContent>div:nth-child(2){
- width: 100%;
- }
- }
|