L133
The U.S. Food and Drug Administration is considering a ban on flavored
e-cigarettes in response to an "epidemic" of young people using e-cigarettes, the agency's leader said on Wednesday.
In a speech at FDA headquarters, Commissioner Scott Gottlieb said the agency would also revisit its compliance policy that extended the dates for manufacturers of flavored e-cigarettes to submit applications for premarket authorization.
"We see clear signs that youth use of electronic cigarettes has reached an epidemic proportion," Gottlieb said.
Gottlieb announced a number of steps the agency planned to take as part of a broader crackdown on the sale and marketing of e-cigarettes to kids. The agency issued 12 warning letters to companies that it says have deceptive marketing labels on e-liquids. "We cannot allow a whole new generation to become addicted to nicotine," he said.
Shares of British American Tobacco were up nearly 6 percent and shares of cigarette-maker Imperial Brands PLC were up more than 3 percent. Shares of cigarette and e-cigarette maker Altria Group also rose more than 6 percent, while Philip Morris International shares were up 4 percent.
Traders said proposed FDA action was less harsh than feared. Manufacturers offer and market e-cigarette flavors that appeal to minors, including candy, bubble gum and fruit flavors. The FDA said more than 2 million middle school and high school students used e-cigarettes in 2017.
The FDA is giving the five top-selling e-cigarette brands — Juul Labs Inc., Vuse, MarkTen XL, Blu and Logic — 60 days to provide plans for how they will mitigate sales to minors.
Juul Labs said it would work with the FDA on its request and is committed to preventing underage use of its product. But it added that "appropriate flavors play an important role in helping adult smokers switch," spokeswoman Victoria Davis said. The owners of Vuse, MarkTen XL, Blu and Logic did not
immediately respond to requests for comment.
"While we remain committed to advancing policies that promote the potential of e-cigarettes to help adult smokers move away from combustible cigarettes, that work can't come at the expense of kids," Gottlieb said.
As part of its broader enforcement efforts, the FDA said it issued more than 1,300 warning letters and fines to retailers who illegally sold e-cigarette products to minors.
L133的更多相关文章
- github标记
<template> <a href="https://github.com/lmk123/Runner" class="github-corner&q ...
- Docker源码分析(六):Docker Daemon网络
1. 前言 Docker作为一个开源的轻量级虚拟化容器引擎技术,已然给云计算领域带来了新的发展模式.Docker借助容器技术彻底释放了轻量级虚拟化技术的威力,让容器的伸缩.应用的运行都变得前所未有的方 ...
- 爬虫--Scrapy之Downloader Middleware
下载器中间件(Downloader Middleware) 下载器中间件是介于Scrapy的request/response处理的钩子框架. 是用于全局修改Scrapy request和respons ...
- 将个人博客与github关联
目录 将个人博客与github关联 将个人博客与github关联 #基于svg <a href="https://github.com/chatlotte" class=&q ...
- Hexo瞎折腾系列(3) - 添加GitHub彩带和GitHub Corner
页面右上角添加GitHub彩带 你可以在这里找到一共12种样式的GitHub彩带,复制其中的超链代码. 在themes\next\layout\_layout.swig目录下找到头部彩带相关的代码: ...
- hexo + next搭建博客
使用hexo和next主题搭建GitHub博客 安装node.js 在node.js 官网下载, 相应系统位数的软件包. 可以选择LTS长期支持版, 或者Current当前版本. 我这里选择的是Win ...
- UI5-技术篇-签字板
签字板应用是通过创建自定义控件实现的,相关代码如下: 1.HTML <!DOCTYPE HTML> <html> <head> <meta http-equi ...
- C语言程序设计(十三) 文件操作
第十三章 文件操作 文本文件:将数值型数据的每一位数字作为一个字符以其ASCII码的形式存储(每一位数字都单独占用一个字节的存储空间) 二进制文件:数据值是以二进制形式存储的 文本文件可以方便地被其他 ...
- python:简单爬取自己的一篇博客文章
1.爬取文章地址:https://www.cnblogs.com/Mr-choa/p/12495157.html 爬取文章的标题.具体内容,保存到文章名.txt 代码如下: # 导入requests模 ...
随机推荐
- android adb devices offline的解决办法
在做Android开发时经常出现android adb devices offline,解决办法如下: 1 重启adb服务 adb kill-server adb start-server linux ...
- 数据结构&算法(一)_堆、栈(堆栈)、队列、链表
堆: ①堆通常是一个可以被看做一棵树的数组对象.堆总是满足下列性质: ·堆中某个节点的值总是不大于或不小于其父节点的值: ·堆总是一棵完全二叉树.将根节点最大的堆叫做最大堆或大根堆,根节点最小的堆叫做 ...
- python网络编程——SocketServer/Twisted/paramiko模块
在之前博客C/S架构的网络编程中,IO多路复用是将多个IO操作复用到1个服务端进程中进行处理,即无论有多少个客户端进行连接请求,服务端始终只有1个进程对客户端进行响应,这样的好处是节省了系统开销(se ...
- hadoop12---java并发编程的一些总结
java并发编程的一些总结 %.1.不应用线程池的缺点 有些开发者图省事,遇到需要多线程处理的地方,直接new Thread(...).start(),对于一般场景是没问题的,但如果是在并发请求很高 ...
- linux驱动分层分离思想
转:https://blog.csdn.net/zqixiao_09/article/details/51088887 前面我们学习I2C.USB.SD驱动时,有没有发现一个共性,就是在驱动开发时,每 ...
- React Native常用组件之ScrollView组件
一.前言 从iOS开发的经验来看,scrollView无疑是移动开发中很重要的一个组件,比如后面会学到的ListView就是继承自它.那么,在开发中比如:焦点图.引导页等地方都有其的影子,那接下来我们 ...
- 将 sql 数据库 编码 改成 Chinese_PRC_CS_AS
use master go ) drop procedure [dbo].[p_killspid] GO create proc p_killspid ) --要关闭进程的数据库名 as ) ) de ...
- 多线程-栅栏CyclicBarrier
上一篇总结了闭锁CountDownLatch,这一篇总结一下栅栏CyclicBarrier.它们两者之间的区别主要是,闭锁是等待一个事件发生,比如上一篇的田径比赛,运动员等待裁判哨声一响就可以开始跑, ...
- java可变参数列表的实现
参数就是我们调用一个方法时需要传入得数据,在方法中可能需要参数协助处理数据或者对参数进行解析处理以达到我们希望得到的数据和结果. 平常我们在写一个方法时,我们能确定需要传入什么样的参数以及参数的个数, ...
- Memcached set 命令
Memcached set 命令用于将 value(数据值) 存储在指定的 key(键) 中. 如果set的key已经存在,该命令可以更新该key所对应的原来的数据,也就是实现更新的作用. 语法: s ...